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