H
H
hard882016-07-28 10:26:15
Regular Expressions
hard88, 2016-07-28 10:26:15

How to remove text between characters in notepad++?

Two questions.
1.there is text
aaaaaa, bbb, vvv
yy, ddd, eee,
etc.
It is necessary to regularly delete everything up to the first comma (aaaaaa, and yy, )
2.
text-
aaa, bbb, yyy.
you need to remove everything between the second comma and the period (, yy. )

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vadim Misbakh-Soloviev, 2016-07-28
@mva

I don't use notepad++, but speaking specifically about regular expressions, like this:
1)
2)
s/(.*,)[^.]*(\.)$/\1\2/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question