You are here

public static function Connection::sqlFunctionRegexp in Drupal 10

SQLite compatibility implementation for the REGEXP SQL operator.

The REGEXP operator is natively known, but not implemented by default.

See also

http://www.sqlite.org/lang_expr.html#regexp

File

core/modules/sqlite/src/Driver/Database/sqlite/Connection.php, line 325

Class

Connection
SQLite implementation of \Drupal\Core\Database\Connection.

Namespace

Drupal\sqlite\Driver\Database\sqlite

Code

public static function sqlFunctionRegexp($pattern, $subject) {

  // preg_quote() cannot be used here, since $pattern may contain reserved
  // regular expression characters already (such as ^, $, etc). Therefore,
  // use a rare character as PCRE delimiter.
  $pattern = '#' . addcslashes($pattern, '#') . '#i';
  return preg_match($pattern, $subject);
}