RegExp.prototype.flags
The flags
property returns a string consisting of the flags of the current regular expression object.
Try it
Property attributes of RegExp.prototype.flags |
|
---|---|
Writable | no |
Enumerable | no |
Configurable | yes |
Description
Flags in the flags
property are sorted alphabetically (from left to right, e.g. "gimsuy"
).
Examples
Using flags
/foo/ig.flags; // "gi"
/bar/myu.flags; // "muy"
Specifications
Specification |
---|
ECMAScript Language Specification # sec-get-regexp.prototype.flags |
Browser compatibility
BCD tables only load in the browser