Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save peroon/d68bcbc12239d9ff094d677ef91d17ee to your computer and use it in GitHub Desktop.

Select an option

Save peroon/d68bcbc12239d9ff094d677ef91d17ee to your computer and use it in GitHub Desktop.
import re
s = 'yahyahooiurhgsbnfkcfhbi'
pattern = r'[bcdefgijklmnpqrstuvwxz]'
t = re.sub(pattern, '', s)
print(t)
# => yahhh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment