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.
次のような非常に大きな文字列があります。
a1 + b1 a2 + b2 a3 + b3 . . . an + bn
そして、それを C 配列操作に変換する必要があります。
a[1]+b[1]; a[2]+a[2]; . . . a[n]+b[n];
提案している正規表現とツールは何ですか? jedit の正規表現を試していましたが、必要に応じて切り替えることができます。
どうもありがとう :)
jEdit の使用:
検索する:
([a-z]+)([0-9]+)
と置換する:
$1[$2]