normalizeLetters static method

String normalizeLetters(
  1. String text
)

converts non standard letter characters to single letters. e.g HEH_START ﻫ is converted to ه

Implementation

static String normalizeLetters(String text) => ArOp.normalize_letters(text);