[][src]Function boa::builtins::string::match_all

pub fn match_all(
    this: &mut Value,
    args: &[Value],
    ctx: &mut Interpreter
) -> ResultValue

String.prototype.matchAll( regexp )

The matchAll() method returns an iterator of all results matching a string against a regular expression, including capturing groups.

More information: