Reads a string that may be quoted.
Reads a string until the next space character.
Reads the remaining text.
Skips spaces.
Indicates whether the string has been fully readed.
auto reader = StringReader(`a " quoted " long string`); assert(reader.readString() == "a"); assert(reader.readQuotedString() == " quoted "); assert(reader.readText() == "long string");
Reads various types of strings from a single stream.