Create a word splitter by defining the regex that matches words and the regex that matches glue.
Create a word splitter by defining the regex that matches words and the regex that matches glue. Note: singleCharWordRegex and singleCharGlueRegex must be mutually exclusive. If they match the same characters the results of the word splitter are undefined.
a regex that matches a single char of a word
a regex that matches a single char of glue
a word splitter based on the supplied word and glue regexes
Create a word splitter by defining the glue
Create a word splitter by defining the glue
a sequence of glue characters
a word splitter that splits word and glue as defined by the supplied glue chars