Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Multiple sub in single regex

	# Multiple sub in single regex.
import re
class Substitutable(str):
  def __new__(cls, *args, **kwargs):
    newobj = str.__new__(cls, *args, **kwargs)
    newobj.sub = lambda fro,to: Substitutable(re.sub(fro, to, newobj))
    return newobj
h = Substitutable('horse')
h = h.sub('h', 'f').sub('e','h')
print(h)
 
PREVIOUS NEXT
Tagged: #Multiple #single #regex
ADD COMMENT
Topic
Name
5+7 =