Last active
March 19, 2016 22:07
-
-
Save khajavi/c369d81a3486b491834c to your computer and use it in GitHub Desktop.
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
val text = new ArabicText("لِّلْـَٔاكِلِينَ") | |
println(text.toString) | |
println(text.removeDiacritics()) | |
for( i <- 0 until text.getLetterCount) | |
println(text.getCharacter(i)) |
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
لِّلْـَٔاكِلِينَ | |
للـاكلين | |
Lam + Kasra + Shadda | |
Lam + Sukun | |
Tatweel + Fatha + HamzaAbove | |
Alif | |
Kaf + Kasra | |
Lam + Kasra | |
Ya | |
Noon + Fatha |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment