fn() splitString
Split at splitter or whitespace/non-whitespace boundary.

Defined in <seqan/vcf_io.h>
Signature void splitString(result, str[, splitter[, quoteChar]]);

Parameters

result A StringSet of CharString for the result.
str A CharString to split.
splitter A to use as the splitter. If this is '\xff' then str will be split at whitespace/non-whitespace boundaries. Defaults to '\xff'.
quoteChar The char to split at, defaults to '"'.

Detailed Description

The string str is split at the given separator splitter. For each such field, an entry is appended to result. You can use quoteChar in str to prevent splitting at a splitter character.

The string is split at whitespace/non-whitespace boundary if splitter == '\xff'.