Need help with Regex

Hi, i need a bit help with my regex

I have this information: “Total: 116 rows,12 pages”
I only need the “12 Pages” i cant remove 116 rows its a part of the string value.

Can anyone help me with a regex code that contains “12 and pages” without space and all to lowercase

i have tried in https://regex101.com/ but im not that good yet that i understand the Quick Reference yet.

Thanks for you time

Regex pattern: \d+\spages$

Thank u! :slight_smile:

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.