Last active
May 16, 2022 08:23
-
-
Save thewh1teagle/ab8285d3b078c3b06fbc8c0094cfd81c to your computer and use it in GitHub Desktop.
Removing Vowels from Hebrew Unicode Text using re module in python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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