gpt4 book ai didi

regex - Postgres asterisc 正则表达式量词不起作用

转载 作者:行者123 更新时间:2023-11-29 12:32:50 25 4
gpt4 key购买 nike

在 Postgres 9.5.1 中,以下命令有效:

select regexp_replace('JamesBond007','\d+','');

输出:

JamesBond

但是星号似乎不起作用:

select regexp_replace('JamesBond007','\d*','');

它产生:

JamesBond007

当我把一些东西作为替换字符串时,会发生更奇怪的事情:

select regexp_replace('JamesBond007','\d+','008');

结果:

JamesBond008

同时

select regexp_replace('JamesBond007','\d*','008');

还给我:

008JamesBond007

Postgres 文档说 * = 0 个或多个原子匹配的序列。那么这里发生了什么? (注意,在 Oracle 中,以上所有工作均按预期进行)

最佳答案

问题是 \d* 可以匹配空字符串,而您没有传递标志 g

参见 regexp_replace :

The flags parameter is an optional text string containing zero or more single-letter flags that change the function's behavior. Flag i specifies case-insensitive matching, while flag g specifies replacement of each matching substring rather than only the first one.

\d* 匹配 JamesBond007 字符串开头的空位置,并且由于未传递 g,因此该空字符串当您使用 select regexp_replace('JamesBond007','\d*','008'); 时替换为 008 并且结果是预期的 - 008JamesBond007.

使用 select regexp_replace('JamesBond007','\d*','');\d* 再次匹配开头的空位置字符串,并将其替换为空字符串(无可见更改)。

注意 Oracle 的 REGEXP_REPLACE默认情况下替换所有匹配项:

By default, the function returns source_char with every occurrence of the regular expression pattern replaced with replace_string.

一般,在基于正则表达式的替换函数/方法中使用匹配空字符串的模式时应谨慎。仅当您了解自己在做什么时才这样做。如果您想替换数字,您通常希望找到至少 1 个数字。否则,为什么首先要删除字符串中不存在的内容?

关于regex - Postgres asterisc 正则表达式量词不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36497031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com