in reply to Re: better way to convert a string into an array and an hash
in thread better way to convert a string into an array and an hash
my (@a, %h); $_ = '1:1,2:1,3:2,500:2,505:1'; #234567890#234567890#234567890#234567890#234567890#234567890 # 47 characters ... %h=map{@@=/[^:]+/g;$a[$#a+1]=$@[0];@@}/[^,]+/g; # 44 ... %h=map{@@=/[^:]+/g;push@a,$@[0];@@}/[^,]+/g; # Based on duff's whimsy above ... 42 characters %h=@a=/[^:,]+/g;@a=@a[grep!($_%2),0..$#a]; # Further whimsy ... 29 characters %h=/[^:,]+/g;@a=/([^,:]+):/g;
Rules:
Being right, does not endow the right to be rude; politeness costs nothing.
Being unknowing, is not the same as being stupid.
Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: better way to convert a string into an array and an hash
by fergal (Chaplain) on Oct 05, 2004 at 15:45 UTC | |
|
Re^3: better way to convert a string into an array and an hash
by duff (Parson) on Oct 05, 2004 at 15:50 UTC | |
|
Re^3: better way to convert a string into an array and an hash
by Rhose (Priest) on Oct 05, 2004 at 16:08 UTC | |
by dragonchild (Archbishop) on Oct 05, 2004 at 17:04 UTC | |
|
Re^3: better way to convert a string into an array and an hash
by Miguel (Friar) on Oct 05, 2004 at 15:45 UTC |