fork download
  1. # http://stackoverflow.com/q/33622988/5290909
  2. import re
  3.  
  4. string_reg = 'add23khh234 ... add2asdf675 ... xxxadd2axxx'
  5.  
  6. string_reg = re.sub(ur'\badd\w*', 'REMOVED', string_reg)
  7. print(string_reg)
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
REMOVED ... REMOVED ... xxxadd2axxx