num2Str
info("num2Str(real number,int character,int decimals,int separator1,int separator2)");
info("number - The number to convert to a text string.");
info("character - The minimum number of characters required in the text.");
info("decimals - The required number of decimals.");
info("separator1 - The decimal separator. Possible values: 1 – point (.) and 2 – comma (,)");
info("separator2 - The thousands separator. Possible values: 0 – no thousands separator ,1 – point (.) ,2 – comma (,) ,3 – space ( )");
info("num2Str(12345.6,1,2,1,2) " + num2Str(12345.6,1,2,1,2));