Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
get_option('any_letter_number')で置き換える必要があります$options_css['any_letter_number']Notepad++ では、必要なものを一致させることができますget_option\('.*?'\)が、置き換えること$options_css\['.*?'\]はできません。
get_option('any_letter_number')
$options_css['any_letter_number']
get_option\('.*?'\)
$options_css\['.*?'\]
どんな助けでも大歓迎です。
ありがとう!
正規表現の置換では$1、キャプチャされたサブパターンを参照するために使用します。
$1
get_option\('(.*?'\) // replace with: $options_css['$1']