Futurebasic/Language/Reference/using

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Syntax[edit | edit source]

USING

Description[edit | edit source]

This function returns a decimal string representation of the numeric expr, formatted according to specifications in format$. The characters in format$ are interpreted as follows: If format$ contains any characters other than the specifiers listed above, they are transferred unaltered to the returned string. Example: x! = 14.726 PRINT USING "You owe me $#,###.##."; x! program output: You owe me $14.73.

See Also[edit | edit source]

DEF USING; STR$; UNS$