I need to replace get_option(\'any_letter_number\') with $options_css[\'any_letter_number\'] In Notepad++, I can match what I need with get_optio
get_option(\'any_letter_number\')
$options_css[\'any_letter_number\']
get_optio
In a regex replacement, you use $1 to refer to a captured subpattern.
$1
get_option\('(.*?'\) // replace with: $options_css['$1']