I don't know if this is possible but I hope someone can help me.
I have a file read into an array. I want to replace every occurance of a tab (\t) with a space. Is there a pattern that represents a tab?
foreach $line (@program)
{
$line =~ s/TAB-PATTERN/ /g;
}
Thanks in advance
Ryan
I have a file read into an array. I want to replace every occurance of a tab (\t) with a space. Is there a pattern that represents a tab?
foreach $line (@program)
{
$line =~ s/TAB-PATTERN/ /g;
}
Thanks in advance
Ryan