- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 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 flagg
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 withreplace_string
.
一般,在基于正则表达式的替换函数/方法中使用匹配空字符串的模式时应谨慎。仅当您了解自己在做什么时才这样做。如果您想替换数字,您通常希望找到至少 1 个数字。否则,为什么首先要删除字符串中不存在的内容?
关于regex - Postgres asterisc 正则表达式量词不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36497031/
在 Postgres 9.5.1 中,以下命令有效: select regexp_replace('JamesBond007','\d+',''); 输出: JamesBond 但是星号似乎不起作用:
我是一名优秀的程序员,十分优秀!