Parser.String method (1 of 3)

Maps a successfully parsed collection of characters into a successfully parsed string.

public static IParser<string> String(this IParser<IEnumerable<char>> parser)

See Also


Parser.String method (2 of 3)

Parses the specified string using ordinal (case-sensitive) comparison.

public static IParser<string> String(string text)

See Also


Parser.String method (3 of 3)

Parses the specified string using the specified string comparison.

public static IParser<string> String(string text, StringComparison comparison)

See Also