[REBOL] AW: Search for " in Strings Re:(2)
From: allen:rebolforces at: 16-Aug-2000 23:32
----- Original Message -----
From: <[moeller_thorsten--gmx--de]>
To: <[list--rebol--com]>
Sent: Wednesday, August 16, 2000 11:11 PM
Subject: [REBOL] AW: Search for " in Strings Re:
> Hi Brett,
>
> that was not was i was searching for. Perhaps i should be more detailed.
>
> i got a file with lines like this:
>
> 2;"615165151";"L";20.15;9999456
>
> what i need is a way to get rid of the quotes including informations. the
> result should look like this
>
> 2;615165151;L;20.15;9999456
Or this works too.
>> data: {2;"615165151";"L";20.15;9999456}
== {2;"615165151";"L";20.15;9999456}
>> trim/with data {"}
== "2;615165151;L;20.15;9999456"
Allen K