On 09.08.2010 23:59, simendsjo wrote:
return justify(s, Alignment.Right, width, ' ');
Forgot zfill:
string zfill(string s, int width)
{
return justify(s, Alignment.Right, width, '0');
}
On 09.08.2010 23:59, simendsjo wrote:
return justify(s, Alignment.Right, width, ' ');
Forgot zfill:
string zfill(string s, int width)
{
return justify(s, Alignment.Right, width, '0');
}