Need help with RegEx
-
Hi, everyone. I need help on how I can search for message if it includes more than X characters in total.
For example: I want to search a username, let’s say “Smudge”. There are characters before Smudge and I do not want them to be included so I’ll be typing “Smudge.*”. But how can I make this so it only shows results if there are X or more characters coming after the username Smudge?
Thank you!! -
See the User Manual > Searching > Regular Expressions > Multiplying Operators for all the details on how to set quantities.
You will want
Smudge.{X,}
whereX
is whatever number you want, and the comma is needed to say “or more”. -
@PeterJones thank you so much for the help!!