我需要一個.net(C#)正則表達式匹配一個逗號分隔的數字列表,如果有一個逗號作爲最後一個字符正則表達式與沒有逗號就結束匹配逗號分隔的列表
123,123,123,123 true - correct match
123,123,123,123, false - comma on end
123,123,123,,123 false - double comma
,123,123,123,123 false - comma at start
"" false - empty string
123 true - single value
不會匹配
我已經找到了這個正則表達式,但匹配結束時有逗號^([0-9]+,?)+$
什麼是適合此模式的正則表達式模式?
編輯:爲清楚起見新增1例正確的答案適用於123
工作在我的情況....感謝您的正確解決方案:) –