When using String.split() the limit argument make processing stop after
extracting n tokens, where n = limit. Other languages store, in the nth
token, the remainder of the string. The latter mode may be often useful
so this library let you choose which behaviour the limit argument will
provide.
When using String.split() the
limit
argument make processing stop after extracting n tokens, where n =limit
. Other languages store, in the nth token, the remainder of the string. The latter mode may be often useful so this library let you choose which behaviour the limit argument will provide.