xpfFindStringInString

FUNCTION  xpfFindStringInString(str                             : STRING; 
                                subStr                          : STRING;
                                startIndex                      : INTEGER)
                                indexOfStartOfSubStringInString : INTEGER;
                

The function xpfFindStringInString search a string str for a substring subStr. The argument startIndex (starting from one) defines the index in str to start searching for subStr. The first character in a string have index one. If subStr is found in str then the index of the first character of subStr in str is returned as the function value. If subStr is not found in str, then zero is the returned function value.

Arguments


TypeNameComment
STRINGstrcomments
STRINGsubStr 
INTEGERstartIndex 

Return Value


 

TypeNameComment
INTEGERindexOfStartOfSubStringInStringcomments

Options


 

Example


<Missing Example>

 

See also

Filter by label

There are no items with the selected labels at this time.

Â