in reply to Re: Seeking help with split!
in thread Seeking help with split!
Thanks AnomalousMonk.
I have another doubt now. How can we split the below with the delimiter "','" with same 4 times?
my $data = 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z';
So that output will be like,
'A','B','C','D','E' 'F','G','H','I','J' 'K','L','M','N','O' 'P','Q','R','S','T' 'U','V','W','X','Y' 'Z'
I tried your code, but not working with "','"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Seeking help with split!
by Happy-the-monk (Canon) on Jul 01, 2013 at 07:45 UTC |