Page 1 of 1

Find with underline character

Posted: Tue Jun 05, 2007 7:03 pm
by ccmancio
I new find any lines with "Sub" , but not a character underline (_)

I use "* Sub *[^_]" but lines with "_" appears..
What´s happen, or where I mistake ?

And... lines begin with Sub apperas too. What ?

Posted: Tue Jun 05, 2007 9:45 pm
by ben_josephs
Do you mean that you want to find lines containing the text “Sub�, but not the text “_�?

This will do that:
Find what: ^[^_]*Sub[^_]*$

[X] Regular expression

It's OK

Posted: Wed Jun 06, 2007 12:34 pm
by ccmancio
It´s OK , Thanks.

Thats problems was "$", without don't function with i need.

Best regards