strToken (Function) |
Top Previous Next |
strToken will extract a sub-string within another string that contains a number of sub-strings - each separated by a "delimiter". The input number is the sub-string number to return.
Input: str : STRING String to search in.
delimiter : STRING The delimiting string that separates the sub-strings in "str".
index : INT The index number of the sub-string that should be returned.
Returns: STRING The extracted sub-string from "str".
Declaration: FUNCTION strToken : STRING;
Example: INCLUDE rtcu.inc |