Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个:value_subvalue想要转换为的文本:value[:subvalue]。
:value_subvalue
:value[:subvalue]
我在 Coda 中有一个查找和替换字段,我可以在其中输入正则表达式来查找和替换。
知道怎么做吗?
你还没有说什么语言,所以这是一个通用的答案:
(:[a-z]+)_([a-z]+)
\1[:\2]
如果您在 java 中执行此操作,则组 refs 将是$1并且$2
$1
$2