in reply to Re^2: I need to insert spaces and get the values for all the variables
in thread I need to insert spaces and get the values for all the variables

Try something like this

while(<DATA>){ print join " ", /([^"=]+="[^"]+")/g; }
  • Comment on Re^3: I need to insert spaces and get the values for all the variables
  • Download Code