Namespace

DuRegExp

DuRegExp

JavaScript Regular Expression related methods

View Source DuESF.jsxinc, line 6827

Members

# static readonly javascriptSymbols

The set containing javascript symbols ( +, -, [, etc.). Useful when parsing javascript code.

View Source DuESF.jsxinc, line 6844

# static readonly javascriptSymbolsNoDot

The set containing javascript symbols ( +, -, [, etc.) except the dot. Useful when parsing javascript code.

View Source DuESF.jsxinc, line 6850

# static readonly javascriptVarChars

The set containing authorized characters for javascript variable. Useful when parsing javascript code.

View Source DuESF.jsxinc, line 6856

Methods

# static escape(string) → {string}

Escape reg exp reserved characters from a string to build a regular expression compatible string
Parameters:
Name Type Description
string string The string to escape

View Source DuESF.jsxinc, line 6835

The escaped string
string