Namespace

DuRegExp

DuRegExp

JavaScript Regular Expression related methods

View Source DuAEF.jsxinc, line 7331

Members

# static readonly javascriptSymbols

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

View Source DuAEF.jsxinc, line 7348

# static readonly javascriptSymbolsNoDot

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

View Source DuAEF.jsxinc, line 7354

# static readonly javascriptVarChars

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

View Source DuAEF.jsxinc, line 7360

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 DuAEF.jsxinc, line 7339

The escaped string
string