This is my find/replace method
sometext([^s])
It thinks the 's' is either an 's' or a '\s' - ie whitespace. How to make it so it definately does not think its a whitespace?
To reproduce this problem: Create a file:
sometexts
sometext
sometext
Do a search with the above regex, and notice it only finds the last item. The second item is not found.