[Top] [Prev] [Next]

tokenize - split string into words

include "sys.m";
sys:= load Sys Sys->PATH;
tokenize: fn(s, delim: string): (int, list of string);

Description

The tokenize function breaks s into words separated by characters in delim.

The returned tuple, (n, list), holds the number of words, n, and an ordered list, list, of those words. The first item on list (for example, hd list) is the leftmost word from s.

Words are delimited by the maximal sequences of any character from the delim string. The tokenize function skips delimiter characters at the beginning and end of s, so each element in the returned list has non-zero length.

If s is nil or contains no words, tokenize returns a count of zero and a nil list.

The delim argument may be nil or the empty string specifying no delimiter characters. The resulting word list will be nil (if s is nil, or the empty string) or a single-item list with a copy of s.

See Also

Limbo System Module



[Top] [Prev] [Next]

infernosupport@lucent.com
Copyright © 1996,Lucent Technologies, Inc. All rights reserved.