hi
What is the regular expression in notepad++ to detect words like ‘%NPN%’ that end with crlf character?
for exampple : 02NPNFLUDE – 12NPNGPDSA and etc
thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Usually
matches a word containing the letters
NPNand consisting of alphanumeric characters, only if it is at the end of a line ($matches the end of the line, which is of course right before a CRLF).I’m not sure if Notepad++ does support the
\wshorthand, though. If this doesn’t work, trybut be aware that only ASCII letters and digits will now match, no accented characters. If that’s not a problem, fine.