Good afternoon,
Would like to know if it is possible to search a word but ignore the same word with other word in regex.
Example : One : Two : Three : Four : Five : Six : Two Three : Nine
Answer : One : Two : Three : Four : Five : Six : Two Three : Nine
So the regex only found the first word Three and ignore Two Three.
I tried this regex :
(?!Two Three)(Three)
but it doesn't work, it does work if the word is two
Any help or suggestions i'd gladly appreciate. Thanks