how to turn off setfill()

I'm using the iomanip setfill() to format one field in my output to a file. The problem is that every field after the setfill() command also uses the same fill character '0'. How do I turn this off and then back on when I come back to that field?
Last edited on
maybe setfill space?
Either that or setw(0).
setfill(' ') did it, thanks
Topic archived. No new replies allowed.