ZVON > References > Haskell reference
| Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: Prelude
Function: words
Type: String -> [String]
Description: creates an array of string from the original one, white space characters serving as separators
Related:

Example 1

Input: words "aa bb cc \t dd \n ee"

Output: ["aa","bb","cc","dd","ee"]