Avatar of maurice cristen
maurice cristen
 asked on

regex code for notepad++ please!

regex code for notepad++ or for wordlist updater 2.7 please!

Input list:
john;salima;we;are;
not;me;

Open in new window


Output:
john
salima
we
are
not
me

Open in new window

Regular Expressions

Avatar of undefined
Last Comment
Rgonzo1971

8/22/2022 - Mon
Pawan Kumar

Please try this -

Regex- >

FIND -> \;

REPLACE - > \;\n

Trial -

EE.jpg
Rgonzo1971

Hi,

pls try
;(\r\n)?

Open in new window

\r\n

Open in new window

REgards
maurice cristen

ASKER
how to delete only the lines wich contains:

mama\hags12@1
maddens\susan
sdfsdf
serteer

output:
sdfsdf
serteer

Open in new window

Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes
ASKER CERTIFIED SOLUTION
Pawan Kumar

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
maurice cristen

ASKER
ok
Rgonzo1971

And the first part of the solution?