Name

String::ParseOptions — Parse string of values

Synopsis

Import String;
list<string> String::ParseOptions ( string  options ,
  map  parameters );

Parameters

string options

Input string

map parameters

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),

Return Value

list<string>

List of strings