Extracted from Pike v7.6 release 33 at 2005-08-19.
pike.ida.liu.se
[Top]
String
String.SplitIterator

Class String.SplitIterator

Description

An iterator that iterates over substrings of a string, separated by a character or several different characters.

Note

Typically you don't need to explicitly use the SplitIterator. Expressions like the following are automatically optimized into using a SplitIterator.

foreach(str/"\n", string line) write("%s\n", line);


Inherit predef::Iterator

inherit Iterator : predef::Iterator