[Solved] Combine specifiers for ToString()?

After my fruitless searching for an answer, you’re my only hope!

I wonder if anyone knows if it’s possible to combine specifiers for a ToString()? I want to re-format a float (always < 10) to a 2-digit integer. So I want to do ToString(“F0”) and ToString(“D2”). Of course I can solve it by some modification of the value, I just wonder if there’s a way to get away with not doing so.

How about ToString(“00”)?

–Eric

Well, now … The problem is that this would be exactly what I’m looking for, which makes me both scared and confused.

In other words: Woohoo! Cheers for you, and thanks!

(… I remember reading about the “0000” etc earlier today, apparently with a brain refusing to parse and compile the visual input …)