Skip to content

Instantly share code, notes, and snippets.

@thewh1teagle
Last active May 16, 2022 08:23
Show Gist options
  • Select an option

  • Save thewh1teagle/ab8285d3b078c3b06fbc8c0094cfd81c to your computer and use it in GitHub Desktop.

Select an option

Save thewh1teagle/ab8285d3b078c3b06fbc8c0094cfd81c to your computer and use it in GitHub Desktop.
Removing Vowels from Hebrew Unicode Text using re module in python
import re
def strip_vowels(text):
return re.sub('[\u0591-\u05C7]', '', text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment