freeyounglive
freeyounglive

Reputation: 1

How can i find lines according to some letters place?

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

Answers (1)

Toto
Toto

Reputation: 91385

Here is a way to go:

  • Ctrl+F
  • Find what: ^[^4e]{9}[4e]

Make sure you have checked Regular expression

Upvotes: 1

Related Questions