string-split[procedure] string-split string [delimiter-string keepempty]Chicken: delimiter-string works like a character set. Example: (string-split "/var/tmp/archive.tar.gz" "./" ) => ("var" "tmp" "archive" "tar" "gz") [procedure] string-split string [delimiter-string]STklos, Bigloo: delimiter-string works like a character set. If omitted, whitespace characters are assumed. Note: STk has split-string. [procedure] string-split string delimGauche: delim can be a character, a char-set, a string, a regexp, or a predicate procedure that takes a character. [procedure] string-split string charGuile: accepts only a character as a delimiter. | About This SiteHome Alphabetical Indexa b c d e f g h i j k l m n o p q r s t u v w x y z other ConceptsConcept:CaseSensitivity Concept:ExtendedLambdaList Concept:FileSystem Concept:HashTable Concept:Module Concept:Networking Concept:ObjectSystem Concept:Process Concept:RegularExpression Concept:UserGroup Implementations
External Links |