「Python」正規表現で連続文字を指定するサンプル
構文
re.search(正規表現, 検索対象の文字列)
サンプルコード
# coding: utf-8 #!/usr/bin/python3 import re cftA = "d{3,}" res = re.search(cftA,'arkdddcom') if res: print("result1: ",res.group(0)) else: print("result2: ",res)
実行結果
>python test.py
result1: ddd