Answer the question
In order to leave comments, you need to log in
Finding and replacing dots in title tags in notepad?
There are html files of the site, where all dots in the title tags need to be removed
. Is there an expression that can clean all files from dots in the title?
<title>Слово. еще слово. другое слово.</title>
Answer the question
In order to leave comments, you need to log in
find: (<title>[^.]+)\.+(.+</title>)
replace: \1\2
or like this:
find: (<title>[^.]+)\.
replace: \1
check boxes: regular expressions, loop search
(<title>[^.]{0,})\.(.{0,}</title>)
\1\2
(<title>[^.]{0,})\.
\1
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question