Making a String a certain length.

mwtheplumber:
How can I force the string to include the leading zeroes?

use C style strings instead, along with sprintf/snprintf:

int runs = 99;

char string[4];

snprintf(string, "%03d", runs);  // Google: C++ format specifier

Serial.println(string);