Regexp匹配并捕获无限重复模式

时间:2017-09-15 11:48:54

标签: regex

我需要将parttern与以下示例相匹配

1
11
11-11
11-133-5
// any set of dash-delimited positive integers

并在单独的"组中捕捉这些"重用。

正确的正则表达式是什么?我没有成功使用https://regex101.com/r/laqMz8/1

1 个答案:

答案 0 :(得分:0)

([0-9]+)((-*[0-9]+)*)

我只是在连字符上添加了Kleene星。 :)