-1

Searching: (WORD) Replacing: \L\1 Got: \LWORD

Searching: (WORD) Replacing: \L\1\E Got: \LWORD\E

Searching: (WORD) Replacing: \L$1 Got: \L$1

I'm lost.

The question is, what am I doing wrong? The radio button is selected, and the commands just don't produce the results I expect.

nick
  • 1
  • 1
  • What is your question? – davidkonrad Jul 12 '14 at 19:47
  • Sorry, I thought it was pretty clear that I was trying and failing to get good results from the search/replace regex terms. I've been reading for an hour to find other options for this result, but none of them worked at all. I think my notepad++ is broken because I think, from reading other articles here, these search replace strings should be resulting in "word", but they don't. – nick Jul 12 '14 at 20:03

1 Answers1

1
  • use \U\1 for upper case
  • use \L\1 for lower case

Read more...

Never forget to check the regular expression radio button.

enter image description here

\L$1 is also working fine

enter image description here

Community
  • 1
  • 1
Braj
  • 46,415
  • 5
  • 60
  • 76