hi,
i seem to be missing something here, can anyone explain why the
following:
array_sscanf("foo % 1 2 3 fum", "%s %% %{%d%} %s");
yields
({ "foo", ({ ({ 1 }), ({ 2 }), ({ 3 }) }), "fum" })
and not
({ "foo", ({ 1, 2, 3 }), "fum" })
?
greetings, martin.