Controlling the expression separator in a multiple print.
Publié : ven. févr. 09, 2018 2:18 am
Hello, in a multiple print, it is printed with a separator (comma), this restricts the output form. I suggest that it be printed together and the user define which separator to put.
currently
print( abc, 123, cde ); returns
abc,123,cde
with a custom separator
print( abc, "," , 123, ",", cde); returns
abc,123,cde
print( abc, ", " , 123, ", ", cde); returns
abc, 123, cde
print( abc, " " , 123, " ", cde); returns
abc 123 cde
print( abc, 123, cde); returns
abc123cde
currently
print( abc, 123, cde ); returns
abc,123,cde
with a custom separator
print( abc, "," , 123, ",", cde); returns
abc,123,cde
print( abc, ", " , 123, ", ", cde); returns
abc, 123, cde
print( abc, " " , 123, " ", cde); returns
abc 123 cde
print( abc, 123, cde); returns
abc123cde