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.
Python 文字列のパターンの後にテキストを追加する方法はありますか?
たとえば、次のように簡単に実行できますsed。
sed
sed 's/my [a-z]\+ pattern/& lost_text/'
ここ&で、一致したパターン全体を意味します。
&
検索とマニュアルページは役に立ちませんでした:(
あなたが探しているre.sub:
re.sub
例:
>>> import re >>> re.sub(r'(\d+)',r'\1--','abcd1cf123vf') 'abcd1--cf123--vf'