在 SQLITE SELECT 语句中使用的自定义 REGEXP 函数

发布于 2024-10-11 20:18:03 字数 542 浏览 2 评论 0原文

我有一个 SQLITE 数据库文件,其中一个表列中有一些简单的正则表达式。

这些表达式类似于 /foo(.?)/foo/bar/(. ?) 等等...

好吧,当我们尝试将某些文本与正则模式匹配时,在 PHP 中,我们会执行以下操作:

preg_match($pattern, $target, $matches)

显然,用内容替换变量。

我想要做的是将任何字符串作为 WHERE 子句的值发送,并且在搜索 SQLITE 数据库文件时,使用每个存储的正则表达式来匹配给定字符串中的模式。

我认为使用 PHP 的 sqlite_create_function() 我可以创建某种例程来执行此操作,但我不知道具体如何操作,因为这是我第一次使用 SQLITE 进行开发。

如果有兴趣,它是我正在开发的框架的 MVC 路由的一部分。

非常感谢,提前。

I have an SQLITE Database's File which in one of the table columns there is some simple Regular Expressions.

These Expressions are something like /foo(.?) or /foo/bar/(.?) and so on...

Well, when we try to match some text against a Regular Pattern, in PHP, we do:

preg_match( $pattern, $target, $matches )

Replacing the variables with the content, obviously.

What I would like to do is send ANY STRING as value of a WHERE Clause and, when searching the SQLITE Database's File, use each of the stored Regular Expressions to match a pattern in the given string.

I think that using PHP's sqlite_create_function() I can create some kind of routine to do this, but I don't know exactly how, since is the first time I develop using SQLITE.

If interest, it's part of an MVC Routing of a Framework I'm developing.

Thank you very much, in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

影子的影子 2024-10-18 20:18:03

您可以使用 SQLiteDatabase::createFunction 文档 此处< /a> 或 PDO::sqliteCreateFunction 文档此处

我做了这样的事情:

<?php
function _sqliteRegexp($string, $pattern) {
    if(preg_match('/^'.$pattern.'$/i', $string)) {
        return true;
    }
    return false;
}
$PDO->sqliteCreateFunction('regexp', '_sqliteRegexp', 2);
?>

使用:

SELECT route FROM routes WHERE pattern REGEXP 'your/url/string' LIMIT 1

You can use SQLiteDatabase::createFunction documentation here or PDO::sqliteCreateFunction documentation here

I did something like this:

<?php
function _sqliteRegexp($string, $pattern) {
    if(preg_match('/^'.$pattern.'$/i', $string)) {
        return true;
    }
    return false;
}
$PDO->sqliteCreateFunction('regexp', '_sqliteRegexp', 2);
?>

Use:

SELECT route FROM routes WHERE pattern REGEXP 'your/url/string' LIMIT 1
青萝楚歌 2024-10-18 20:18:03

这是您要找的吗?

e.g. SELECT * FROM `my_table` WHERE `my_column` REGEXP "\/foo(.?)"

Is this what you are looking for?

e.g. SELECT * FROM `my_table` WHERE `my_column` REGEXP "\/foo(.?)"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文