in reply to Re^2: I need to insert spaces and get the values for all the variablesin thread I need to insert spaces and get the values for all the variables
Try something like this
while(<DATA>){ print join " ", /([^"=]+="[^"]+")/g; } [download]