filesystem percentage

hi guys,
im new in linux i need your help.
my problem is how can i take the % here's the sample

Available Used(%) Mounted On
1.2G 73% /var
299.3M 72% /home
520.3M 88% /home/file
164.8M 84% /home/prd
812.6M 79% /home/fmssdr

into this output

Available Used(%) Mounted On
1.2G 73 /var
299.3M 72 /home
520.3M 88 /home/file
164.8M 84 /home/prd
812.6M 79 /home/fmssdr

i try to script using "expr" its confusing
thanks

Some possibilities:

sed 's/%//' file > newfile

or:

tr -d '%' < file > newfile

or:

awk '{sub("%","")}1' file > newfile

Regards

 awk '{$2=$2+0}1' file