Converts a string of Hebrew letters to a numerical value.
Only considers the value of Hebrew letters א through ת. Ignores final Hebrew letters such as ך (kaf sofit) or ם (mem sofit) and vowels (nekudot).
א
ת
ך
ם
gematriyaStrToNum('תשע״ד'); // 774gematriyaStrToNum('ט״ו'); // 15gematriyaStrToNum('ג׳תשס״א'); // 3761 (thousands prefix) Copy
gematriyaStrToNum('תשע״ד'); // 774gematriyaStrToNum('ט״ו'); // 15gematriyaStrToNum('ג׳תשס״א'); // 3761 (thousands prefix)
Converts a string of Hebrew letters to a numerical value.
Only considers the value of Hebrew letters
אthroughת. Ignores final Hebrew letters such asך(kaf sofit) orם(mem sofit) and vowels (nekudot).