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"\]