标签: regex sublimetext2
我有以下代码,
"doctype": "Item_attribute_value_customer_name"
我希望能够将其转换为
"doctype": "Item Attribute Value Customer Name"
基本上,下划线后面的字符应转换为大写,下划线必须替换为空格。
有人可以帮我提供代码来实现这一目标是Sublime。
答案 0 :(得分:2)
_([a-z])
您可以找到并替换为\U$1或\U\1。请参阅演示。
\U$1
\U\1
https://regex101.com/r/sS2dM8/33