1

我需要替换get_option('any_letter_number')$options_css['any_letter_number']在 Notepad++ 中,我可以匹配我需要的内容,get_option\('.*?'\)但替换它$options_css\['.*?'\]不起作用。

任何帮助将不胜感激。

谢谢!

4

1 回答 1

1

在正则表达式替换中,您使用$1来引用捕获的子模式。

get_option\('(.*?'\)
// replace with:
$options_css['$1']
于 2012-11-30T01:56:23.630 回答