WORDINDEX

 ───WORDINDEX(string,n)────────

WORDINDEX returns the position of the first character in the n th blank-delimited word in string. n must be a positive whole number. If there are fewer than n words in the string, 0 is returned.

Here are some examples:

WORDINDEX('Now is the time',3)    ->    8
WORDINDEX('Now is the time',6)    ->    0


[Back: WORD]
[Next: WORDLENGTH]