[REBOL] Re: Why is it not possible to use double quotes within arguments to a re
From: Micael:Gullmes:telenor:se at: 1-Sep-2003 16:07
Hi again,
I just thought I'd try system/options/args, but that does not cut it either
rebolcmd -- ["string" "string with space" {string with "" }]
>> system/options/args
== ["[string" "string with space" "{string" "with" " }]^/"]
Here is another example to clearify what I'm trying to achieve:
/opt/rebol/rebolcmd -- {[[1] [2] ["3"] [] []]}
>> system/script/args
== "[[1] [2] [3] [] []]"
>> system/options/args
== ["[[1]" "[2]" "[3]" "[]" "[]]"]
I would like to get the following result:
---------------wanted result-----
>> system/script/args
== [[1] [2] ["3"] [] []]
or
== "[[1] [2] ["3"] [] []]"
---------------/wanted result-----
Brgds /Micael