gpt4 book ai didi

java - 正则表达式匹配版本号零次或多次

转载 作者:行者123 更新时间:2023-12-03 19:04:42 26 4
gpt4 key购买 nike

我正在编写一个正则表达式来匹配以下类型的字符串:

my-jar-1.2.3.5.jar
my-jar.jar
my-jar-1.2.jar

借助于 A regex for version number parsing我想出了以下内容

String pat = "^my-jar(-|\\.)?(?:(\\d+)\\.)?(?:(\\d+)\\.)?(?:(\\d+)\\.)?(\\*|\\d+).jar$";
Pattern patt = Pattern.compile(pat);
System.out.println("For my-jar-1.2.jar - " + patt.matcher("my-jar-1.2.jar").find());
System.out.println("For my-jar-1.2.3.5.jar - " + patt.matcher("my-jar-1.2.3.5.jar").find());
System.out.println("For my-jar.jar - " + patt.matcher("my-jar.jar").find());

输出是

For my-jar-1.2.jar - true
For my-jar-1.2.3.5.jar - true
For my-jar.jar - false

如何在我的正则表达式中包含最后一个案例?

最佳答案

下面的正则表达式会不会有什么问题:

^my-jar(\-\d+|\-\d+(\.\d+)*)?\.jar$

此处演示:

Regex101

关于java - 正则表达式匹配版本号零次或多次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39739001/

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