words
words breaks a string up into a list of words, which were delimited by white space.
words breaks a ByteString up into a list of words, which were delimited by Chars representing white space.
words breaks a ByteString up into a list of words, which were delimited by Chars representing white space. And
> tokens isSpace = words
O(n) Breaks a Text up into a list of words, delimited by Chars representing white space.
This is a simple wrapper around getting a list of words, that works in a common across multiple platforms.
Version 0.1.2
A word search solver library and executable
Version 1.0.1
This utility is useful for finding out if some old, misplaced version of a file (say from your old laptop) has any new text in it that never got checked in, synced, or copied over to your newest version of the file. The basic unix diff tool is sometimes incredibly unsatisfactory for this purpose, for example when text has been moved around, or when there are widespread whitespace differences.
Version 0.0.3
unwords is an inverse operation to words. It joins words with separating spaces.
O(n) Joins words using single space characters.