Converting numbers to strings is no problem, but the string created uses ascii numbers. I am inserting the number in a Japanese sentence. The character itself is correct, say 3, for example, but the width and positioning should be a little different when typing in Japanese. As a result the number looks cramped up against the following character. Is there any clever non-manual way to convert 1 to 1, 2 to 2, 3 to 3, etc.?
Converting numbers to strings is no problem, but the string created uses ascii numbers.
Share
For lack of any better ideas, I wrote up a not-so-elegant category solution that manually converts each character. If anyone has a better solution, please let me know.