I just purchased the professional version of your software. I would like to read an order number to the customer ie – w23881 … How can I make it pronounce each number instead of saying 23 thousand….etc? This number is generated by the database
Why not take the number w23881 from the database and set it to “w 2 3 8 8 1″ before you send the request
Not quite sure what language you are using. Here are
some pseudo code (just one way of doing it):
for i = 0, i < s.length, i++
new_string.append(s(i));
new_string.append(‘ ‘);
Please check your language reference about the exact syntax.

