I have a string like this
field1=1 field2=2 field3=abc
I want to ouput this as
2,1,abc
Any ideas as to how I can go about this? I can write a small C or Java program to do this, trying I'm trying to find out a simple way to do it in Perl.
|
|
I have a string like this
I want to ouput this as
Any ideas as to how I can go about this? I can write a small C or Java program to do this, trying I'm trying to find out a simple way to do it in Perl.
|
|||
|
|
|
||||
|
|
|
There's several ways you can do that:
|
|||
|
|
|
|
Use
Output:
|
||
|
|
|
|
Assuming your ordering was a typo:
|
||||
|
|
|
Perl is definitely the right tool for this.
|
||
|
|
|
|
||
|
|
|
Let's play Perl golf :D |
||||||
|
|
|
|
||
|
|
|
|
|
|||
|
|
|
|
|
||
|
|
|
|
If you actually need both the keys and the values. I would put them into a hash. You could just capture both sides of the "
--- field1: 1 field2: 2 field3: abc For further information please read If you are just a beginner, you may want to read |
||
|
|
1and2above? – Sinan Ünür Jul 10 at 18:04