我正在尝试使用preg_match
.
文本格式是数字分隔,,
没有字母或其他任何内容
只是数字 + ","
例如 :10,50,30
可以说我想检查一下:
20,300,60 //ok
50 //ok..yes, ok even if there is no "," because there is no other number after it.
40,,60,60 // not ok..double ","
55,411, //not ok..contain "," at the end
70,800 //ok
我真的尝试了很多东西并且在我打开这个 Q 之前浪费了 2 个小时
请问有什么想法吗?
谢谢你。