I am trying to find all the digits following a certain String pattern using a Perl compatible Regex. For example, I want to find the number “123” but only if it is preceded by the String “me”. ex: this is a String me123, this123, me12234.
This should return “123”, “12234”.
Thanks!
1 Answer