user
12/15/2016, 8:57 AM/**
• Will tokenize a String using commas as the default delimiter.
• All leading and trailing whitespace is trimmed. All whitespace
• within the String are ignored in the tokenization process. For
• an example we get that `"iname rd, rs, rt".tokenize()` yields
• `["iname", "rd", "rs", "rt"]` and that `"10($t0)".tokenize("(")`
• yields `["10", "$t0"]`
•
• @param delimiter the character that delimits tokens
*/
http://spec.commonmark.org/0.27/#example-88