gpt4 book ai didi

java - int 数组的正则表达式

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

我需要验证字符串参数是否可以转换为 int 数组。

String pattern = "(\\d+[,])+";
String test = "18,32,5,8,10";

test2.matches(pattern2) //returns false as i requires , in the end

有什么办法可以忽略最后一个','

最佳答案

使用组构造来指定数字后应跟有 (, 数字)...

\\d+(?:,\\d+)+

关于java - int 数组的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41032660/

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