Difference between revisions of "LlSubStringIndex"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 8: Line 8:
|return_text=that is the index of '''pattern''' in '''source'''.
|return_text=that is the index of '''pattern''' in '''source'''.
|spec
|spec
|caveats=*Performs a literal match.
|caveats=*Performs a literal match (case sensitive).
**Wildcards and RegEx are not supported.
**Wildcards and RegEx are not supported.
|constants
|constants

Revision as of 00:16, 18 July 2007

Summary

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

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

• string source
• string pattern

If pattern is not found in source, -1 is returned.
The index of the first character in the string is 0

Caveats

  • Performs a literal match (case sensitive).
    • 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
    //(It's also significantly less readable (unless you include the comments)
    // and most developers I know will advice against these kind of practices. -OddesE Oh)
}

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 );