Reads the remaining text.
StringTerminatedException if there's nothing left to read
auto r = StringReader(`this is not a string`); assert(r.readString() == "this"); assert(r.readQuotedString() == "is"); assert(r.readText() == "not a string");
See Implementation
Reads the remaining text.