gpt4 book ai didi

regex - 使用正则表达式从 SAP HANA 中的字符串中查找所有匹配项(十进制)

转载 作者:行者123 更新时间:2023-12-02 02:15:46 31 4
gpt4 key购买 nike

我需要从 SAP HANA 中的字符串中提取所有匹配的十进制数字

文本:LOREN IPSUM DOLOR SIT AMET 73,89 X 339,85 X 0,08 CBC70° 1000/2,5

substr_regexpr('(\d(.*?)([\.\,]\d{1,3}))' in "Field" group 1

我只从文本中提取73,89

\d(.*?)([\.\,]\d{1,3})+\d(.+?)([\,]\d{1,3})+\d(.*?)([\,]\d{1,3})

我将 3 个值一起提取:73,89 X 339,85 X 0,08

我需要提取它,但我无法这样做。

substr_regexpr('(\d(.*?)([\.\,]\d{1,3}))' in "Field" group 1 ==> 73,89
substr_regexpr('(\d(.*?)([\.\,]\d{1,3}))' in "Field" group 2 ==> 339,85
substr_regexpr('(\d(.*?)([\.\,]\d{1,3}))' in "Field" group 3 ==> 0,08

谢谢!

最佳答案

要按照所示示例获取 3 个捕获组,您可以尝试以下操作。

(?<=\s)(\d+(?:,\d+)?)\s+X\s+(\d+(?:,\d+)?)\s+X\s+(\d+(?:,\d+)?)

Demo for above regex

说明:为上述内容添加详细说明。

(?<=\s)          ##Checking look behind if spaces are present before next mentioned match.
(\d+(?:,\d+)?) ##Creating 1st capturing group to match digits and ,digits as optional.
\s+X\s+ ##Matching spaces(1 or more occurrences) X spaces(1 or more occurrences).
(\d+(?:,\d+)?) ##Creating 2nd capturing group to match digits and ,digits as optional.
\s+X\s+ ##Matching spaces(1 or more occurrences) X spaces(1 or more occurrences).
(\d+(?:,\d+)?) ##Creating 3rd capturing group to match digits and ,digits as optional.

关于regex - 使用正则表达式从 SAP HANA 中的字符串中查找所有匹配项(十进制),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67205210/

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