Tokenize the specified input into the specified tokens.
Synopsis
Declared in <balcl_typeinfo.h>
static
int
tokenizeArrayEnvironmentVariable(
bsl::vector<bsl::string>* tokens,
std::string_view const& input);
Description
Load the specified tokens with the specified input broken up into substrings separated by ` , except that characters following '' are not to be interpreted as separators. It is an error for `input to contain a '' that is not followed by another '' or ` `. Return 0 on success, and a negative value on failure.
Return Value
0 on success, and a negative value on failure
Parameters
Name |
Description |
tokens |
destination for the tokenized substrings |
input |
environment‐variable text to tokenize |
Created with MrDocs