Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Python

Idiom #83 Regex with character repetition

Declare the regular expression r matching the strings "http", "htttp", "httttp", etc.

from re import compile
r = compile('ht{2,}p')
import re
r = re.compile(r"htt+p")
(def r #"htt+p")

New implementation...
< >
deleplace