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.
私は正規表現にかなり慣れていないので、次のような式をどのように変換するのか疑問に思っています
$a * ($aa - $b)
の中へ
[a] * ([aa] - [b])
私はPythonのreを使用しています。どうもありがとう!
>>> import re >>> strs = '$a * ($aa - $b)' >>> re.sub(r'\$(\w+)', r'[\1]', strs) '[a] * ([aa] - [b])'