removeEnglishNumbers {arabicStemR} | R Documentation |
Removes Arabic numerals from a string.
removeEnglishNumbers(texts)
texts |
A string from which English numerals should be removed. |
removeEnglishNumbers
returns a string with English numerals removed.
Rich Nielsen
## Create string with Arabic characters and English number
x <- '\u0627\u0647\u0644\u0627 \u0648\u0633\u0647\u0644\u0627 123'
## Remove English Numbers
removeNumbers(x)