OsReplaceString
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
|||
Line 2: | Line 2: | ||
|function_syntax=LSL_String osReplaceString(string src, string pattern, string replace, int count, int start) | |function_syntax=LSL_String osReplaceString(string src, string pattern, string replace, int count, int start) | ||
|threat_level=VeryLow | |threat_level=VeryLow | ||
+ | |permissions=true | ||
+ | |delay=0 | ||
|description=This function is for regular expression-based string replacement. The count parameter specifies the total number of replacements to make where -1 makes all possible replacements. | |description=This function is for regular expression-based string replacement. The count parameter specifies the total number of replacements to make where -1 makes all possible replacements. | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> |
Revision as of 19:39, 25 October 2017
LSL_String osReplaceString(string src, string pattern, string replace, int count, int start)
| |
This function is for regular expression-based string replacement. The count parameter specifies the total number of replacements to make where -1 makes all possible replacements. | |
Threat Level | VeryLow |
Permissions | Use of this function is always allowed by default |
Extra Delay | 0 seconds |
Example(s) | |
// // osReplaceString usage example // default { state_entry() { //Define an example text string example_text = "ThX big rXd fox jumpXd ovXr thX lazy dog"; // Show the owner the string before it's changed llOwnerSay("Before : ''"+example_text+"''"); // Replace all the upper case X-es with the lower case letter e example_text = osReplaceString(example_text, "X", "e", -1, 0); // Show the owner the string after it's changed llOwnerSay("After : ''"+example_text+"''"); } } |