llSubStringIndex

From Second Life Wiki
Revision as of 08:04, 29 March 2007 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search

Summary

Function: integer llSubStringIndex( string source, string pattern );

Returns an integer that is the index of source in pattern.

• string source
• string pattern

If pattern is not found in source, -1 is returned.

Caveats

  • Performs a literal match.
    • Wildcards and RegEx are not supported.
All Issues ~ Search JIRA for related Bugs

Examples

Useful Snippets

An easy way to see if a string exists in another string...

if(~llSubStringIndex(myString, str))
{//it exists
    //This works because ~(-1) == 0
    //It saves bytecode and is faster then doing == -1
}

See Also

Functions

•  llListFindList Find a list in another list

Deep Notes

Search JIRA for related Issues

Signature

function integer llSubStringIndex( string source, string pattern );