gpt4 book ai didi

regex - 使用 RegEx 从字母数字字符串中提取数字

转载 作者:行者123 更新时间:2023-12-05 00:02:18 26 4
gpt4 key购买 nike

我需要在较长的字母数字数据字符串中识别子字符串“X.123”和/或“X.8”。前任:

A cow flew over the moon in the X.123 module, not the X.124.3 module, 
and certainly not the X.125C78 module. The cow poo-pooed the X.8 module.

我如何排除第二个和第三个实例?到目前为止,这是我想出的“X.123”部分:
/[X][\.][0-9]{1,4}/

我不确定如何使表达式在任何非数字字符处停止(例如:X124C78)

非常感谢帮助!

最佳答案

\b 在这种情况下很好,我会这样使用它:

/\bX\.\d{1,4}\b/

关于regex - 使用 RegEx 从字母数字字符串中提取数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8107006/

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