When formatting a number into a string, I can limit the characters after a decimal point with, e.g., %.03f (display three digits after the point), but how do I also remove all digits BEFORE the point?
For example, I'd like 100.943 to format to ".943".