P
Peter Pippinger
Hello NG,
I´m very new to perl. I have a list in %info. It has allways two parts: NAME and
VALUE.
For example:
name1,value1,name2,value2,name3,value3... and so on.
If i do the following...
**
foreach $test (%info){
print "$test \n";
}
**
....all the content of %info will be shown. But i need to have the content
devided into the two variables. So that i can do something like that:
LOOPBEGINNING
print "$name $value";
LOOPEND
How can i do that?
Thanks for any hints!
Peter
I´m very new to perl. I have a list in %info. It has allways two parts: NAME and
VALUE.
For example:
name1,value1,name2,value2,name3,value3... and so on.
If i do the following...
**
foreach $test (%info){
print "$test \n";
}
**
....all the content of %info will be shown. But i need to have the content
devided into the two variables. So that i can do something like that:
LOOPBEGINNING
print "$name $value";
LOOPEND
How can i do that?
Thanks for any hints!
Peter