DEVFYI - Developer Resource - FYI

How do I replace every <TAB> character in a file with a comma?

Perl Questions and Answers


(Continued from previous question...)

How do I replace every <TAB> character in a file with a comma?

perl -pi.bak -e 's/\t/,/g' myfile.txt

(Continued on next question...)

Other Interview Questions