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!
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login