[][src]Module boa::builtins::regexp

This module implements the global RegExp object.

The RegExp` object is used for matching text with a pattern.

More information:

Functions

create

Create a new RegExp object.

exec

RegExp.prototype.exec( string )

init

Initialise the RegExp object on the global object.

make_regexp

Create a new RegExp

match

RegExp.prototype[ @@match ]( string )

match_all

RegExp.prototype[ @@matchAll ]( string )

test

RegExp.prototype.test( string )

to_string

RegExp.prototype.toString()