我需要将get_option('any_letter_number')
替换为$options_css['any_letter_number']
在Notepad ++中,我可以将我需要的内容与get_option\('.*?'\)
匹配,但将其替换为$options_css\['.*?'\]
不起作用。
任何帮助将不胜感激。
谢谢!
答案 0 :(得分:1)
在正则表达式替换中,您使用$1
来引用捕获的子模式。
get_option\('(.*?'\)
// replace with:
$options_css['$1']