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.
我正在使用记事本++。
我想找到以下内容
$result["value"]
并将其替换为
$result->Items[0]->value
那么任何人都可以帮助我使用正则表达式吗?
这个对我有用:
找什么:\$result\["([^"]+)"\]
\$result\["([^"]+)"\]
用。。。来代替:$result->Items[0]->\1
$result->Items[0]->\1
使用这个正则表达式
\$result\["value"\]