gpt4 book ai didi

Amazon Redshift 中匹配序列数字的正则表达式

转载 作者:行者123 更新时间:2023-12-04 08:54:36 27 4
gpt4 key购买 nike

我正在写一个正则表达式,它匹配字符串中递增的数字。它在测试中运行良好,但在 Amazon Redshift 中不起作用。
有人可以帮我从这里出去吗
正则表达式:

^(?:[^1]*)1(?:[^2]*)2(?:[^3]*)3(?:.*)$
例如它匹配字符串(正确):
123
1331213
12222211323
17397462453
1abcd2abcd3abcd
https://regex101.com/r/zkUMxG/1/
当我在亚马逊使用它时,出现错误:
Error running query: Invalid preceding regular expression prior to repetition operator. The error occurred while parsing the regular expression fragment: '(?>>>HERE>>>:[^1]*)1(?'. DETAIL: ----------------------------------------------- error: Invalid preceding regular expression prior to repetition operator. The error occurred while parsing the regular expression fragment: '(?>>>HERE>>>:[^1]*)1(?'. code: 8002 context: T_regexp_init query: 19124520 location: funcs_expr.cpp:185 process: query1_107_19124520 [pid=15061] -----------------------------------------------

最佳答案

Amazon Redshift 正则表达式基于 POSIX ( proof )。 POSIX Basic Regular Expressions不支持您的 ^(?:[^1]*)1(?:[^2]*)2(?:[^3]*)3(?:.*)$ 的非捕获组表达式包含:有四个 (?:...)模式。
由于您不打算使用它们,因此完全删除它们:

^[^1]*1[^2]*2[^3]*3.*$

关于Amazon Redshift 中匹配序列数字的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63909609/

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