Alphabet structure – script MetaTrader 5
This structure provides quick access to sets of lowercase and uppercase latin, russian characters, digits, punctuation, brackets, whitespaces, and special sets of symbols after/before which space should be dropped. Alphabet abc; /*REPORT*/ Print(“RUSSIAN”); ArrayPrint(abc.russian.capital.shortitems); ArrayPrint(abc.russian.capital.stringitems); ArrayPrint(abc.russian.lowercase.shortitems); ArrayPrint(abc.russian.lowercase.stringitems); Print(“LATIN”); ArrayPrint(abc.latin.capital.shortitems); ArrayPrint(abc.latin.capital.stringitems); ArrayPrint(abc.latin.lowercase.shortitems); ArrayPrint(abc.latin.lowercase.stringitems); … Read more