OsFormatString
From OpenSimulator
(Difference between revisions)
(New page: '''string osFormatString(string format,list params)''' <source lang="lsl"> // //osFormatString example, by Tom Earth. // default { state_entry() { string to_format = "My n...) |
|||
| (8 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | {{osslfunc | |
| − | + | |threat_level=Low | |
| − | <source lang="lsl"> | + | |function_syntax=string osFormatString(string format,list params) |
| + | |ossl_example=<source lang="lsl"> | ||
// | // | ||
| − | //osFormatString example, by Tom Earth. | + | //osFormatString() example, by Tom Earth. |
// | // | ||
default | default | ||
| Line 15: | Line 16: | ||
} | } | ||
</source> | </source> | ||
| + | |description=Return the string with parameters substituted into it. These parameters need to be incrementing numbers, starting at zero, and surrounded by single accolades (also known as curly brackets). | ||
| + | | | ||
| + | }} | ||
Latest revision as of 10:57, 30 July 2011
string osFormatString(string format,list params)
| |
| Return the string with parameters substituted into it. These parameters need to be incrementing numbers, starting at zero, and surrounded by single accolades (also known as curly brackets). | |
| Threat Level | Low |
| Permissions | No permissions specified |
| Extra Delay | No function delay specified |
| Example(s) | |
// //osFormatString() example, by Tom Earth. // default { state_entry() { string to_format = "My name is {0}. My owner is {1}. I am in the sim {2}"; list format = [llGetObjectName(),llKey2Name(llGetOwner()),llGetRegionName()]; llOwnerSay(osFormatString(to_format, format)); } } | |