🅰️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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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