| ZVON > References > Haskell reference |
| Intro / Search / ZVON |
| | 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: |
Input: words "aa bb cc \t dd \n ee"
Output: ["aa","bb","cc","dd","ee"]