I have the list
m = {{x == 0, y == 0.29264681456942615}, {x == 30 , y == 0.2419119568894183},
{x == 50 , y == 0.1485164898707659}, {x == 70 , y == 0.05437093382683481},
{x == 90 , y == 1.`}}
and I want to change the unit into percent only for y value.
So the output that I want will be
m = {{x == 0, y == 29.264681456942615%}, {x == 30 , y == 24.19119568894183%},
{x == 50 , y == 14.85164898707659%}, {x == 70 , y == 5.437093382683481},
{x == 90 , y == 100%}}
How can I do this??

y==will contain strings (not numbers) ? – b.gatessucks Nov 7 '12 at 10:06m /. {y == x_ -> y == 100 x}. – b.gatessucks Nov 7 '12 at 10:27m /. {y == x_ -> y == ToString[100 x]<>"%"}– PlatoManiac Nov 7 '12 at 10:29m /. {y == x_ -> y == Hold[ToString[Evaluate[100 x]] <> " %"]} // Release– PlatoManiac Nov 7 '12 at 11:08