我想匹配字符串,字符串中有用文本分隔的不同数字
例如,匹配字符串,如:Hello 42 here is the next number 43
数字可以是任何数字,但不能相同。
并且不匹配字符串,如:Hello 42 here is the next number 42
数字相同的地方。
这应该可以工作-
D+(d+)D+(?:(?!1)d+)
此处演示