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.
私はgrepの初心者で、Pythonに精通しています。私の問題は、"text" のような引用符内のすべての文字列を検索して < em >text< /em > に置き換えることです。
ソースファイルはhtml形式です
ありがとう
それはトリックを行うでしょう
import re s = '"text" "some"' res = re.subn('"([^"]*)"', '<em>\\1</em>', s)[0]