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.
正規表現コマンドを使用して、いくつかの乱数を含む文字列を見つけ、それらのいくつかを変更し、他のものを変更しない方法を探しています。
BEFORE: textureFile(A)[(B)] = INFO; AFTER: textureFile(A)[(B)] = NEWINFO
この例では、A と B を変更せずに INFO を変更します。
私はこれを見つける必要があります:
textureFile..\[.\] = .*;
より具体的な解決策は次のとおりです。
何を見つける:
(textureFile\(.*\)\[\(.*\)\] = )(.*)
と置換する:
$1NEWINFO
オプションを. matches newline無効にします。
. matches newline