Hi ALL,
My requirement is:
i need to process a text file which is comma/tab delimited.
Example: INPUT File
ABC,DEF,GHI,JKL
code:
my ($a,$b,$c,$d) = split(/
/, $_);
will process this text file.
If a a text file conatins a INPUT file as below:
ABC|DEF|GHU|IJK
the same code :my ($a,$b,$c,$d) = split(/