suyog_linux wrote: > > I am new to perl coding and I am working with a CSV file where I have > to remove all the double quotes (") from the first line of the file. > > I need a code that I can embed in a .pl file. Could somebody help me > with this ?
It's unlikely that things are that simple, but $line1 =~ tr/"//d; will do what you describe. Rob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/