PegCharParserIn(Char, Char, Char, Char) Method |
Matches a character within either of the specified inclusive ranges.
Namespace: Altaxo.Main.PegParserAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic bool In(
char c0,
char c1,
char c2,
char c3
)
Parameters
- c0 Char
- The lower bound of the first range.
- c1 Char
- The upper bound of the first range.
- c2 Char
- The lower bound of the second range.
- c3 Char
- The upper bound of the second range.
Return Value
Booleantrue if the current character is in either range; otherwise,
false.
See Also