将特定单词转换为大写

将特定单词转换为大写

我有一个文档,其中有一些以下划线 ("_") 开头的特定单词。我需要一个正则表达式来让 notepad++ 将其更改为大写。

我已经尝试过这个,但是它不起作用:

_\w+

答案1

搜索:

(_\w+)

替换为:

\U$1

... 您就大功告成了!(请确保单击左下角的“正则表达式”单选按钮。)

我的测试如下。

前:

Hi, this is a test _with some _words starting _WITH _Underscores
Let's try to _toUpper them all!

后:

Hi, this is a test _WITH some _WORDS starting _WITH _UNDERSCORES
Let's try to _TOUPPER them all!

祝你好运!

相关内容