I have a text file that looks similar to this...
.FMAP6 0201200112Z
101 0.45 0.00 0.34 1.24
102 0.00 2.34 3.21 0.00
103 0.00 0.00 0.45 0.00
.
.
etc
.
.
I'm trying to figure out how to change all of the values in the 4 columms to 0.00 while preserving the format. The number of rows changes on occasion. Everything else needs to be preserved. The file should end up looking like this...
.FMAP6 0201200112Z
101 0.00 0.00 0.00 0.00
102 0.00 0.00 0.00 0.00
103 0.00 0.00 0.00 0.00
.
.
etc
.
.
Thanks for any help
.FMAP6 0201200112Z
101 0.45 0.00 0.34 1.24
102 0.00 2.34 3.21 0.00
103 0.00 0.00 0.45 0.00
.
.
etc
.
.
I'm trying to figure out how to change all of the values in the 4 columms to 0.00 while preserving the format. The number of rows changes on occasion. Everything else needs to be preserved. The file should end up looking like this...
.FMAP6 0201200112Z
101 0.00 0.00 0.00 0.00
102 0.00 0.00 0.00 0.00
103 0.00 0.00 0.00 0.00
.
.
etc
.
.
Thanks for any help