RegExp$Typings extension
- on
Properties
- compile ↔ RegExp Function(String, [String?])
-
Available on RegExp, provided by the RegExp$Typings extension
getter/setter pair - dotAll → bool
-
Available on RegExp, provided by the RegExp$Typings extension
Returns a Boolean value indicating the state of the dotAll flag (s) used with a regular expression. Default is false. Read-only.no setter - exec ↔ RegExpExecArray? Function(String)
-
Available on RegExp, provided by the RegExp$Typings extension
getter/setter pair - flags → String
-
Available on RegExp, provided by the RegExp$Typings extension
Returns a string indicating the flags of the regular expression in question. This field is read-only. The characters in this string are sequenced and concatenated in the following order:no setter - global → bool
-
Available on RegExp, provided by the RegExp$Typings extension
Returns a Boolean value indicating the state of the global flag (g) used with a regular expression. Default is false. Read-only.no setter - hasIndices → bool
-
Available on RegExp, provided by the RegExp$Typings extension
Returns a Boolean value indicating the state of the hasIndices flag (d) used with with a regular expression. Default is false. Read-only.no setter - ignoreCase → bool
-
Available on RegExp, provided by the RegExp$Typings extension
Returns a Boolean value indicating the state of the ignoreCase flag (i) used with a regular expression. Default is false. Read-only.no setter - lastIndex ↔ num
-
Available on RegExp, provided by the RegExp$Typings extension
getter/setter pair - multiline → bool
-
Available on RegExp, provided by the RegExp$Typings extension
Returns a Boolean value indicating the state of the multiline flag (m) used with a regular expression. Default is false. Read-only.no setter - source → String
-
Available on RegExp, provided by the RegExp$Typings extension
Returns a copy of the text of the regular expression pattern. Read-only. The regExp argument is a Regular expression object. It can be a variable name or a literal.no setter - sticky → bool
-
Available on RegExp, provided by the RegExp$Typings extension
Returns a Boolean value indicating the state of the sticky flag (y) used with a regular expression. Default is false. Read-only.no setter - test ↔ bool Function(String)
-
Available on RegExp, provided by the RegExp$Typings extension
getter/setter pair - unicode → bool
-
Available on RegExp, provided by the RegExp$Typings extension
Returns a Boolean value indicating the state of the Unicode flag (u) used with a regular expression. Default is false. Read-only.no setter