I have a string containing a word that is sometimes mixed with numbers, I try to check if there is a particular word in this string, so I tried to do something like this: Original string:
str="123 here12K there34 bla"
regex:
RegExp(\'here'\d*+[A-Z]?).test(str)
and always get not available. I found this: similar question but still the same result