FindSubString

From Dragon Age Toolset Wiki
Jump to: navigation, search

Returns the position of a substring within a string.

int FindSubString(
string sString,
string sSubString,
int nStart = 0
);
Parameters:
sString
The string to search
sSubString
The substring to search for
nStart
The position to start the search from
Returns:

Returns the position of the substring, returns -1 on error.

Source:

script.ldf

Description

Returns the starting index of the first occurence of the substring sSubstring within the string sString beginning at position nStart. Returns -1 if the string sSubstring does not occur in the string sString after position nStart. The result is 0 indexed, meaning this function will return 0 if the substring occurs at the very beginning of the string.


See also

UT FindSubString