Notepadd++正则表达式大小写转换 示例1:将语句 test this sentence 转为大写 查找:^.*$ 替换:U$0 或———— 查找:^(.*)$ 替换:U1 或 U$1 示 … Continue reading Notepadd++正则表达式大小写转换