splits a string into a vector of substrings
splits a string into a vector of substrings. This is inefficient because copying is generally involved here. A more efficient implementation which uses pointers into the original string (and length counts) may replace this in a future version. Clearly, this was influenced by perl.
generated by doc++