Alphabet structure – script MetaTrader 5

Alphabet structure - script for 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

Alphabet structure – library MetaTrader 5

Alphabet structure - library for 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. I find this useful in applications where i need to manipulate text data. The Alphabet also contains methods to classify a character/text.    Alphabet abc;    … Read more