[REBOL] Re: Remove quote marks & LEFT(), RIGHT() ?
From: allenk:powerup:au at: 16-Dec-2000 10:05
Since you aren't replacing it with anything, just use trim/with (instead of using replace). trim/with {This is a "test} {"} == "This is a test" you can also use trim/with to remove many characters in one pass trim/with {this is a test} {aeiou} == "ths s tst" Cheers, Allen K