Search word with a large number
-
Hello I want to know how to search a word with a high number. For example:
Events 580
I found this expression but this found because the first number:
s*+ +events\ [0-9,]I want that only shows for example when number is more large or high of 100, not because the first number is between 0-9
-
I might try:
Events\x20+[1-9]\d\d(?=\D|\z)
Can’t really understand what you’re wanting ahead of
Events
, though, so good luck. -
@alan-kilborn thanks Alan this works with numbers more high of 100.
In the case that I search a word with a number more high of 400, not less, how would it be the expression? -
This part of the expression controls the first of the 3 digits:
[1-9]
; read it as “must be 1 through 9”. I think you can figure out how to adjust it for your new need. -
@alan-kilborn Ah okay, yes its very simple, sorry haha. Thank you so much :)