我可以用NP ++写一个正则表达式来查找under_score_case
。我可以在NP ++中使用TextFX通过突出显示和选择来将大小写更改为大写和小写。
如何使用NP ++的“查找/替换”或TextFX的“查找和替换”将它们缝合在一起并转换under_score_case
为camelCase
?
我想学习如何在NP ++中不使用脚本来执行此操作。
输入样例:
this is_a_line
some more_data_over_here
whoop de_do_da
所需的输出:
this isALine
some moreDataOverHere
whoop deDoDa
与下划线匹配的正则表达式为_([a-z])
。我认为存在的替代品,但找不到_\toupper\1
。