
23 Jan
2006
23 Jan
'06
10:19 a.m.
Hello, Is it possible to define a rule: rule<> mystringrule = confix_p('"', *c_escape_ch_p, '"') differently such that I can use std::string value; bool result = parse("\"hello world\"", mystringrule[assign_a(value)]).full; and get the text = "hello world" assigned to value? Currently, I get text = "\"hello world\"" instead. ie with double quotes at either end. Thanks -John