00001 #include <cppscript> 00002 00003 var script_main(var) 00004 { 00005 var text = "The cat sat on the mat"; 00006 var is_not_space = bind( is_not_one_of, " \t\r\n" ); 00007 foreach( word, split_chars( is_not_space, text ) ) 00008 writeln(word); 00009 return 0; 00010 }
1.5.7.1