gpt4 book ai didi

java - 正则表达式返回不期望的结果

转载 作者:行者123 更新时间:2023-12-01 16:56:50 25 4
gpt4 key购买 nike

我正在尝试从正则表达式中捕获一个遵循以下模式的组:

Ex1 - anyanyany 组 1 必须是 anyanyany

Ex2 - anyanyany.abcany 组 1 必须是 anyanyany

Ex3 - anyany.abcde.fghi 组 1 必须是 anyany.abcde

当我尝试 (.+)(?:\.) 时,它只返回 Ex2 和 Ex3。如果我将其更改为 (.+)(?:\.)* 它会返回相同的输入字符串。

我真的不知道该怎么办才能解决这个问题。有人可以帮助我吗?我缺少哪些知识?

https://regex101.com/r/jG6wY8/2

最佳答案

您可以使用此正则表达式:

^([^.]+(?:\.[^.]+)?)

RegEx Demo

PS:regex101 demo中使用了^([^.\n]+(?:\.[^.\n]+)?)因为演示在不同的行中有多个输入。

关于java - 正则表达式返回不期望的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31568827/

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