change 43% to 43.5

I have a column in % and I want to display it as a one decimal place number for sorting - what function would I be looking at for dropping the % sign?

are u looking for something like this ..

echo "43.5%" | sed 's/%//'

ahh perfect thanks a million...