JavaScript::QuickJS::RegExp(3pm) User Contributed Perl Documentation JavaScript::QuickJS::RegExp(3pm)

JavaScript::QuickJS::RegExp - JavaScript `RegExp` in Perl

    my $regexp = JavaScript::QuickJS->new()->eval("/foo/");
    if ($regexp->test('fo')) {
        # This won’t run because test() will return falsy.
    }

This class represents a JavaScript RegExp <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp> instance in Perl.

This class is not instantiated directly.

The following methods correspond to their JS equivalents:

  • exec()
  • test()

In addition, the following methods return their corresponding JS property:

  • flags()
  • dotAll()
  • global()
  • hasIndices()
  • ignoreCase()
  • multiline()
  • source()
  • sticky()
  • unicode()
  • lastIndex()
2024-10-15 perl v5.40.0
QR Code