LOTUSSCRIPT LANGUAGE


StrToken function
Example

Returns a specified word from a text string.

Note This function is new with Domino Release 6.

Syntax

StrToken (expression, delimiter, wordNumber [, compMethod])

Elements

expression


delimiter
wordNumber
compMethod
Return value

Returns a String. The String returned is the specified word from expression.

Usage

StrToken returns the specified word from a text string. A "word" is defined as the part of a string that is delimited by the defined separator character. For example, if you specify a space (" ") as the separator, a word is any series of characters preceded by and followed by a space (or by the quotation marks that indicate the beginning or end of the string). e.g. " hello there " has four words - "", "hello" , "there", ""

Note The first word, "", is considered a word because it is delimited by the beginning of the string on the left and by the delimiter character on the right.

Expression is broken up into words and the word in the position specified by wordNumber is returned.

If the absolute value of wordNumber is greater than the number of words, the specified word is assumed to be the empty string "".

If wordNumber = 0, the word specified is taken to be the 1st word of the String (i.e. wordNumber=0 is equivalent to wordNumber=1)

If wordNumber < 0, the word specfied is found by counting backwards from the last word of the String.

Error Handling

StrToken will throw a Runtime Type Mismatch if the expression or delimiter is not scalar, or if wordNumber is not a long (cannot be coerced to a long by the compiler)

StrToken will throw a Runtime Argument Out of Range Error if the optionCompare value is invalid.

Language cross-reference

@Word function in formula language

Example
See Also