public DictionaryEntry(string dictionaryCode, string word, int entryIndex, IEnumerable <string> html) { DictionaryCode = dictionaryCode; EntryIndex = entryIndex; Word = ArabicHelper.SubstituteAndOmit(word); Html = html.ToList().AsReadOnly(); }
public static string GetIndexForArabic(string word) => ArabicHelper.ArabicToLetterNames(ArabicHelper.SubstituteAndOmit(word)).Replace('-', 'x');