Share
 
 

acet-str-format (AutoLISP/Express Tools)

Formats a message with embedded arguments.

Supported Platforms: AutoCAD for Windows only; not available in AutoCAD LT for Windows, or on Mac OS and Web

Signature

(acet-str-format format [args ...])
format

Type: String

A string containing plain text and argument specifiers. Argument insertions appear in the format string as the percent (%) character followed by an argument number.

args

Type: Integer, real, or string

Multiple argument values to be converted and inserted. Only integer, real and string arguments can be converted. Other argument types must be converted to one of these three. Real arguments are converted using the current LUNITS and LUPREC values; you may wish to first use the angtos or rtos functions for proper display.

Return Values

Type: String

A string with appropriate substitutions.

Example

(acet-str-format "%1/%2 or %2/%1." "one" "two")
"one/two or two/one."

Was this information helpful?