🅰️Character Functions
A set of utility functions that help identify various types of Arabic characters. These functions make it easy to analyze and manipulate Arabic text.
Table of Contents
isSukun
Syntax
Sukun(arChar)Description
Checks if the given Arabic character is a Sukun.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Sukun,falseotherwise.
isShadda
Syntax
isShadda(arChar)Description
Checks if the given Arabic character is a Shadda.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Shadaa,falseotherwise.
isTatweel
Syntax
isTatweel(arChar)Description
Checks if the given Arabic character is a Tatweel.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Tatweel,falseotherwise.
isTanwin
Syntax
isTatweel(arChar)Description
Checks if the given Arabic character is a Tanwin.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Tanwin,falseotherwise.
isTashkeel
Syntax
isTashkeel(arChar)Description
Checks if the given Arabic character is a Tashkeel.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Tashkeel,falseotherwise.
isHaraka
Syntax
isHaraka(arChar)Description
Checks if the given Arabic character is a Haraka.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Haraka,falseotherwise.
isShortHaraka
Syntax
isShortHaraka(arChar)Description
Checks if the given Arabic character is a Short Haraka.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Short Haraka,falseotherwise.
isLigature
Syntax
isLigature(arChar)Description
Checks if the given Arabic character is a Ligature.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Ligature,falseotherwise.
isHamza
Syntax
isHamza(arChar)Description
Checks if the given Arabic character is a Hamza.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Hamza,falseotherwise.
isAlef
Syntax
isAlef(arChar)Description
Checks if the given Arabic character is a Alef.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Alef,falseotherwise.
isYehLike
Syntax
isYehLike(arChar)Description
Checks if the given Arabic character is a Yeh Like.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Yeh Like,falseotherwise.
isWawLike
Syntax
isWawLike(arChar)Description
Checks if the given Arabic character is a Waw Like.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Waw Like,falseotherwise.
isTeh
Syntax
isTeh(arChar)Description
Checks if the given Arabic character is a Teh.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Teh,falseotherwise.
isSmall
Syntax
isSmall(arChar)Description
Checks if the given Arabic character is a Small.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Small,falseotherwise.
isWeak
Syntax
isWeak(arChar)Description
Checks if the given Arabic character is a Weak.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Weak,falseotherwise.
isMoon
Syntax
isMoon(arChar)Description
Checks if the given Arabic character is a Moon.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Moon,falseotherwise.
isSun
Syntax
isSun(arChar)Description
Checks if the given Arabic character is a Sun.
Parameters
arChar- The Arabic character to check.
Returns
boolean- Returnstrueif the character is a Sun,falseotherwise.
Last updated