Hi I am currently trying to use regex (in FME, using StringSearcher) to match and return every instance where there is a hashtag, and the 5 characters following it.
e.g "#29777 is close to #19666 and also make sure #12345 is there"
would return: "#29777 #19666 #12345"
I currently have this as my Regex expression which works, but i'm not sure how to get more than one return:
(?<=#).{5}
Any help would be greatly appreciated,
Thanks
If you want to match hashtags with only 5 chars you can try this pattern: