Hi all, I am trying to replace a string containing ' (apostrophe) with "(two apostrophes not inverted commas). i.e *asdf'qwer* replaced to *asdf"qwer* Is this feasible? Thanks . -- Steven [[alternative HTML version deleted]]
On 27.01.2010 06:45, Steven Kang wrote:> Hi all, > > > I am trying to replace a string containing ' (apostrophe) with "(two > apostrophes not inverted commas). > > i.e > > *asdf'qwer* replaced to *asdf"qwer* > > Is this feasible?gsub("'", '"', "asdf'qwer") Uwe Ligges> Thanks . > > >