我有一個字符串ABCD:10,20,,40; 1/1; 1/2,1/3,1/4我想將字符串拆分爲以下幾部分:正則表達式匹配不起作用
ABCD - 分開:
10,20,...,40分開;
1/1 - 分開;
1/2,1/3,1/4 - 分開;
爲什麼下面的正則表達式對我不起作用?
string txt = @"ABCD:10,20,,40;1/1;1/2,1/3,1/4";
Regex reg = new Regex(@"\b(?<test>\w+):(?<com>\w+);(?<p1>\w+);(?<p2>\w+)");
Match match = reg.Match(txt);