LoginSignup
0
0

More than 1 year has passed since last update.

Pythonで正規表現を確認したいときのスニペット

Last updated at Posted at 2022-06-28

ちょっと確認したい時に使うスニペット

import re

text = 'hoge'
pattern = '.g.'
result = re.sub(pattern, 'bar', text)

print(result)

備忘録

  • 置換時にマッチした文字を使いたい場合、$1,$2...ではなく\\1,\\2...とする
text = 'hoge'
pattern = 'h.(g.)'
result = re.sub(pattern, '\\1', text)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0