baxy77bax has asked for the wisdom of the Perl Monks concerning the following question:
I need to push this string into an array using any of /&%, symbols as record separators. but i need those elements to be in my array as well . so :my $string = "/3212/2344,4334,XYZ&54,32/4333%3343%12";
should by my outcome.my @array = ('/','3212','/,'2344',',','4334','XYZ','&','54',',','32', +'/','4333','%','3343','%','12'");
Thank you in advance
UPDATE:
Thank you, I knew it was something simple but i somehow missed taht part
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Splitting a string and pushing it into an array
by choroba (Cardinal) on Jun 25, 2014 at 20:25 UTC |