Can anyone supply the regular expression for finding any character that is not letter, number new line or | the vertical line (that I don’t know the name of )
I have lots of lines of text that is like this
929|10|10|1||S|N|||||||N|N|
And I want to find the odd character
What you’re talking about is a “character class”.
A character class is something like
[a-f]which means lettera,borc.Putting a
^at the beginning is the negation of that.So you want
[^\da-zA-Z\n|].The vertical line is called “pipe” or “vertical bar”.