Or, messageClient(%client,'','%1 + %2 = %3', %a,%b,%c);
no, that won't work, but I'd like to know, is there a string format function for torquescript like there is for java? for example, you could do this in java:
System.out.printf("You have %d dollars and %02d cents", dollars, cents);
if dollars was 12 and cents was 4, it would print out "You have 12 dollars and 04 cents"
is there a function like this in torquescript?