06-30-2024, 05:54 AM
I've used the sound files below for speaking phone numbers before. If you want written ones, then isn't that just a simple case of converting one digit at a time to a string?
SELECT CASE n
CASE 0: n$ = "zero"
CASE 1: n$ = "one"
CASE 2: n$ = "two"
....
SELECT CASE n
CASE 0: n$ = "zero"
CASE 1: n$ = "one"
CASE 2: n$ = "two"
....