trimming zeros

Hi,

I want to trim +with leading zero's with amount fields.I know using awk for trimming leading zeros with +,but I want get the entire row itself.

cat file_name |awk -F " " '{printf "%14.4f%f\n",$4}'

ex:

10 xyz bc +00000234.4500
20 yzx foxic +002456.000

Expexted

10 xyz bc 234.4500
20 yzx foxic 2456.0000

Thanks inadvance
Mohan

awk '{printf "%d %s %s %-14.4f\n", $1, $2, $3, $4}' file_name

Another one with sed:

sed 's/+0*//' file

Regards

Hi
Thanks for your reply

thanks
mohan