标签: regex sublimetext3
我的javascript文件中有几条使用//语法的注释。我想将其更改为/* */语法。
javascript
//
/* */
所以,如果我有这样的评论:
// This is a comment,我希望将其更改为
// This is a comment
/* This is a comment */
到目前为止,我可以使用正则表达式//.*选择所有注释,但无法正确替换。有什么帮助吗?
//.*
答案 0 :(得分:0)
替换
//([^\r\n]+)
通过
/*$1 */