I have been bashing my head trying to find a way to do this.
I am cleaning out some text files and most of the time a simple "Find>Replace" method works but I am trying to remove somthing like this:
The text file would look like:
Hello my name is Dave [1], I am from California [2] an I like fishing [3].
I would like to strip out all of the numbers in brackets (including the brackets themselves) from the number 1 to 100. So the text looks like:
Hello my name is Dave, I am from California an I like fishing.
Any help on creating a regex that can do this?
Thanks