Funkcja string ShortToString() konwertuje kod symbolu Unicode, jako wartość liczbową typu ushort , do symbolu tekstowego. Więcej informacji można znaleźć w specyfikacji MQL4.
#property strict
void OnStart()
{
//--- wyświetlić wybrane symbole
ushort value_1 = 65; // litera "A" w systemie kodowania Unicode
string result_1 = ShortToString(value_1);
Print("1) result_1 = ",result_1);
Print("2) ShortToString(35) = ",ShortToString(35)); // symbol "#" w systemie kodowania Unicode
//--- skomponować słowo "Text"
string value_2 = "Tex";
string value_3 = ShortToString(116); // value_3 = t
string result_2 = value_2 + value_3; // result_2 = Tex + t = Text
Print("3) result_2 = ",result_2);
}
Rys. 1. Przykłady stosowania funkcji ShortToString().