F
F
f4u2018-01-23 00:27:08
Regular Expressions
f4u, 2018-01-23 00:27:08

How to write a regular expression to clean up a file with strings?

there is a file with lines like
297125; keyword; mysite.com/;6;263;200;9000000
297125;keyword2; mysite.com/;6;263;200;9000000
is it possible to make a regular expression for notepad++ to remove everything except keywords?
did (?<=;).*?(?=;http) but on the contrary, it removes the necessary

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Roman Mirilaczvili, 2018-01-23
@2ord

I think so:
\d+;(.+?);.+

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question