Reads a string until the next space character.
StringTerminatedException if there's nothing left to read
auto r = StringReader(`hello world`); assert(r.readString() == "hello"); assert(r.readString() == "world");
See Implementation
Reads a string until the next space character.