Reputation: 1
I have large sql document. I don't know how i can find lines which 10th character is "4" or "e" for examle.
Upvotes: 0
Views: 21
Reputation: 91385
Here is a way to go:
^[^4e]{9}[4e]
Make sure you have checked Regular expression
Upvotes: 1