RE: can any body tell me how to remove quotes from a name.

2005-08-31 Thread Bob Showalter
[EMAIL PROTECTED] wrote: > Could any body tell me how to get mayank from 'mayank' $var =~ tr/'//d; > sp. by map or grep command Those functions are not appropriate to the problem as you've described it -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

Re: can any body tell me how to remove quotes from a name.

2005-08-31 Thread Scott Taylor
Eric Walker said: > if the 'mayank' is in a text file, then > cat file | sed s/\'//g > newfile > > this should do it I think. LMAO - Nice, for a top poster, > On Wednesday 31 August 2005 03:42 am, [EMAIL PROTECTED] wrote: >> Hi all >> Could any body tell me how to get >> mayank

Re: can any body tell me how to remove quotes from a name.

2005-08-31 Thread Eric Walker
if the 'mayank' is in a text file, then cat file | sed s/\'//g > newfile this should do it I think. On Wednesday 31 August 2005 03:42 am, [EMAIL PROTECTED] wrote: > Hi all > Could any body tell me how to get > mayank > from > 'mayank' > sp. by map or grep command > (means I just w