Overload | Description |
---|---|
ReadTo(Char,String) | Reads a token from the current position (inclusive) to the first occurrence of the given stop char (exclusive). The position of the first occurrence of the stop char becomes the new reading position. Returns false if the parser has reached its end position. |
ReadTo(Char,Int32,Int32) | Reads a token from the current position (inclusive) to the first occurrence of the given stop char (exclusive). The position of the first occurrence of the stop char becomes the new reading position. Returns false if the parser has reached its end position. |
ReadTo(Char[],String) | Reads a token from the current position (inclusive) to the first occurrence of one of the given stop chars (exclusive). The position of the first occurrence of a stop char becomes the new reading position. Returns false if the parser has reached its end position. |
ReadTo(Char[],Int32,Int32) | Reads a token from the current position (inclusive) to the first occurrence of one of the given stop chars (exclusive). The position of the first occurrence of a stop char becomes the new reading position. Returns false if the parser has reached its end position. |
ReadTo(Char,Char,String) | Reads a string from the current position (inclusive) to the first occurrence of the given stop char (exclusive). The position of the first occurrence of the stop char becomes the new reading position. Returns false if the parser has reached its end position. |
ReadTo(Char[],Char,String) | Reads a string from the current position (inclusive) to the first occurrence of one of the given stop chars (exclusive). The position of the first occurrence of the stop char becomes the new reading position. Returns false if the parser has reached its end position. |
ReadTo(String,String) | Reads a string from the current position (inclusive) to the first occurrence of the given string (exclusive). The reading position is set just after the last char of the given end string. Returns false if the parser has reached its end position. |
ReadTo(String,Int32,Int32) | Reads a string from the current position (inclusive) to the first occurrence of the given string (exclusive). The reading position is set just after the last char of the given end string. Returns false if the parser has reached its end position. |