My RegEx "FUN(\d{0,20})"
captures a bit more than intended. It should return just the number following the specific tag "FUN"
. How can I alter it to avoid numbers following "WordsEndingWithFUN"
? See example below. Case sensitivity is not important here.
FUN12|, blaFUN123 # matched 12
ooopsFUN12 ; FUN1245 # matched 1245
ooopsFUN ; FUN13 # matched 13
FUN, blaFUN123 # nothing is matched
blaFUN123 # nothing is matched