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

The global 'RegExp' object

Functions

create_constructor

Create a new RegExp object

exec

Search for a match between this regex and a specified string

make_regexp

Create a new RegExp

match

RegExp.prototype[Symbol.match] Returns matches of the regular expression against a string

match_all

RegExp.prototype[Symbol.matchAll] Returns all matches of the regular expression against a string TODO: it's returning an array, it should return an iterator

test

Search for a match between this regex and a specified string

to_string

Return a string representing the regular expression