RegularExpressions

A set of regular expressions that might be useful for parsing.

Properties

Link copied to clipboard

Recognizes double-quoted strings using doubled double-quotes as escape for double-quotes, as used in the CSV format and BASIC interpreters.

Link copied to clipboard

Regex for recognizing double-quoted strings, including quotes escaped using a backslash.

Link copied to clipboard

Horizontal whitespace, i.e. whitespace excluding newline characters.

Link copied to clipboard

At least one letter, '_' or '$', followed by any number of the same or digits.

Link copied to clipboard

Signed Numbers matching the JSON specification

Link copied to clipboard

A newline including horizontal whitespace that follows, allowing us to get the indentation level from the matched content.

Link copied to clipboard

Numbers excluding the sign prefix in order to avoid potential problems with parsing expressions such as "3 - 4"

Link copied to clipboard

Regex for recognizing single-quoted strings, including quotes escaped using a backslash.

Link copied to clipboard

All kinds of symbols, including composites used in various programming languages.

Link copied to clipboard

At least one whitespace character