OsReplaceString
From OpenSimulator
(Difference between revisions)
(Created page with "{{osslfunc |function_syntax=LSL_String osReplaceString(string src, string pattern, string replace, int count, int start) |threat_level=VeryLow |description=This function is for r...") |
|||
Line 3: | Line 3: | ||
|threat_level=VeryLow | |threat_level=VeryLow | ||
|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"> | ||
+ | // | ||
+ | // 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+"''"); | ||
+ | } | ||
+ | } | ||
+ | </source> | ||
}} | }} |
Revision as of 20:40, 8 November 2015
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 | No permissions specified |
Extra Delay | No function delay specified |
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+"''"); } } |