Link Search Menu Expand Document

suuji

Explanation Converts a number to a string of Chinese numerals. Numbers after the decimal point are rounded off.
Call format var s = suuji( number value [, representation ] )
Return value Character string converted to Chinese numerals
Arguments Number number Numerical values ​​to convert to Chinese numerals
Integer display format If the number is 321
1: 321
2: San Hyaku 2 Pickup Ichi
3: 32
If omitted, the display format will be 1.
Exception None
Example of use
var s = suuji(12345);
print(s, "\n");
Related item