Core Function SPrintf
From Sputnik Wiki
(Difference between revisions)
(→Remarks) |
|||
Line 24: | Line 24: | ||
Go see Printf() for details on the format string | Go see Printf() for details on the format string | ||
+ | |||
* [[Core Function Printf|Printf( <expression>, <expressions>... )]] -- Print a formatted string to the console window | * [[Core Function Printf|Printf( <expression>, <expressions>... )]] -- Print a formatted string to the console window | ||
Revision as of 05:45, 10 November 2011
SPrintf( <expression>, <expressions>... )
Contents |
Description
Create a formatted string.
expression
The format string and flags to use (see Remarks).
expressions
Variables that will be output according to the "Format Control".
Return Value
Success: Returns the formatted string.
Failure: Returns an empty string.
Remarks
Go see Printf() for details on the format string
* Printf( <expression>, <expressions>... ) -- Print a formatted string to the console window
Anything thats valid for Printf to print to console window is also valid for SPrintf to use to create strings.
Example
$val = SPrintf("Value is 0x'{0:x}'", (int)100) Printf($val) ; Prints 0x64 since the {0:x} is telling it to place param 0 as :x meaning hex