in reply to split function
Kind of hard to help you with the code provided.
split returns an array so I would do something like
my @values = split ';', "123;abc;456;def;123;;123";
Then loop the array and print each element to the file
print FILE "$_,\n" foreach @values;
As for a limit I would assume that the limit would be the system memory
- Kiel Stirling
|
|---|