我在字典中有以下代码
SN00001002001
SN00001002002
SN00001002003
SN00001002004
...
AN00001002006
AN00001002007
AN00001002008.
我想将其显示为
SN00001002 001-006 6(count)
AN00001002 001-008 8(count)
我使用了以下代码
Dictionary<object, int> counts = new Dictionary<object, int>();
foreach (string item in str1)
{
if (!counts.ContainsKey(item1))
{
counts.Add(item1, 1);
} }
else
{
counts[item]++;
}
}
它正确显示计数为
SN00001002 6(count)
AN00001002 8(count)
,但不是序列号。任何人都可以为此提出一个想法。