xpxFindStringInString

FUNCTION xpxFindStringInString (str , subStr                        : STRING;
                                startIndex                          : INTEGER;
                                VAR indexOfStartOfSubStringInString : INTEGER)
                                status                              : INTEGER;

The function xpxFindStringInString search a string str for a substring subStr. The argument startIndex (starting from one) defines the index in str to start searching for subStr.

Arguments


TypeNameComment
STRINGstrThe string to be searched
STRINGsubStrThe string that will be used for searching the "str" string
INTEGERstartIndexthe index in str to start searching for subStr
INTEGERindexOfStartOfSubStringInStringThe 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 through the argument indexOfStartOfSubStringInString (starting from one). If subStr is not found in str, then indexOfStartOfSubStringInString is set to zero.

Return Value


Error rendering macro 'excerpt-include' : User 'null' does not have permission to view the page 'US:_r_XPX_Return_Value'.

Options


 

Example


<Missing Example>

 

See also

Filter by label

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

Â