Sublime 正则表达式, Regex Exrpression
1
2
<img([^>])*>
<img$1 />
Salesforce TestClass 替换函数名
替换函数名
1
2
public static [^\s]* ([a-z])
⇒static testMethod void test(\1)
1
2
<img([^>])*>
<img$1 />
替换函数名
1
2
public static [^\s]* ([a-z])
⇒static testMethod void test(\1)