Use Notepad++ to turn words and phrases into CamelCase
Posted: 12/23/2021 1:34:17 PMBy: PrintableKanjiEmblem
Times Read: 1,602
Likes: 0 Dislikes: 0
Topic: Reference
For lowerCamelCase :
SEARCH = (?-is)([a-zA-Z])([a-zA-Z]+)|(\b|_)[a-zA-Z](\b|_)|[^a-zA-Z\r\n]+ and REPLACE = \u\1\L\2
then :SEARCH = (?-is)([A-Z][a-z]+){2,} REPLACE = \l$0
BEFORE Hey everyone - We all need to get together and see if we can come up with a solution to make sure we can't experience this so-called "problem" again. (THIS MEANS YOU 123BOB!!)
AFTER heyEveryoneWeAllNeedToGetTogetherAndSeeIfWeCanComeUpWithASolutionToMakeSureWeCantExperienceThisSoCalledProblemAgainThisMeansYou123Bob
Rating: (You must be logged in to vote)