capitalize all words contained between two specific words
-
Hi to all
I have numerous text files and each of them contains a line like:
<title>movietitle</title>
obviously each file has a different movie title.
I would like all titles to become capitalized like
<title>MOVIETITLE</title>.
is there a way to do it all together?
Thanks in advance -
A possible way:
find:
(?-is)(?<=<title>)(.+?)(?=</title>)
repl:\U$0
mode: regular expression -
@alan-kilborn said in capitalize all words contained between two specific words:
find: (?-is)(?<=<title>)(.+?)(?=</title>)
repl: \U$0
mode: regular expressionit works!!! perfect!!!
many many thanks!