String::ParseOptions — Parse string of values
Import String;
list<string>
String::ParseOptions
( | string | options , |
map | parameters
) ; |
Input string
Parmeter used at parsing - map with keys: "separator":<string> - value separator (default: " \t"), "unique":<boolean> - result will not contain any duplicates, first occurance of the string is stored into output (default: false), "interpret_backslash":<boolean> - convert backslash sequence into one character (e.g. "\\n" => "\n") (default: true) "remove_whitespace":<boolean> - remove white spaces around values (default: true),