Using regex filter to remove all numbers?

Hi.

I have a page that the best granularity I can achieve when making my selection, is a child that will have “posted XX minutes ago” included in the output text.

I would like to use regex to remove all numbers from what would be scanned and this should provide a pretty good monitor.

At best when I use regex, it won’t include any text after something is filtered.

Any help would be appreciated. Thank you.

Hi Jesse, the following regular expression filter can be used to strip out all numbers from text:

\D*

This is inverse of \d which is used to match numbers. Following screenshot shows how to use a regex filter:

Can you try this out and see if that works? Let me know if you need any help. Cheers!

1 Like

Success! Thank you! Extra characters as needed to post is happening now, I suppose that’s enough.

1 Like