OsStringIndexOf
From OpenSimulator
(Difference between revisions)
(Created page with "{{osslfunc |permissions=true |threat_level= |function_syntax=integer osStringIndexOf(string src, string value, integer ignoreCase) |ossl_example=<source lang = "lsl"> // Examp...") |
|||
Line 10: | Line 10: | ||
state_entry() | state_entry() | ||
{ | { | ||
− | llSay(PUBLIC_CHANNEL, "Touch me to show | + | llSay(PUBLIC_CHANNEL, "Touch me to show osStringIndexOf"); |
} | } | ||
Latest revision as of 16:56, 1 May 2019
integer osStringIndexOf(string src, string value, integer ignoreCase)
| |
Reports the zero-based index of the first occurrence of string value withing string scr. returns -1 if not found. It can compare ignoring case with ignoreCase TRUE(1) or considering case if FALSE(0); | |
Threat Level | No threat level specified |
Permissions | Use of this function is always allowed by default |
Extra Delay | No function delay specified |
Example(s) | |
// Example of osStringRemove default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch me to show osStringIndexOf"); } touch_start(integer n) { string src = "abcdef"; string val = "DE"; llOwnerSay((string)osStringIndexOf(src, val, TRUE)); } } |