我有一个Dictionary<string,string>
我想分组的。以下是一些示例键/值对
==========================
| Key | Value |
==========================
| A_FirstValue | 1 |
| A_SecondValue | 2 |
| B_FirstValue | 1 |
| B_SecondValue | 2 |
==========================
现在,我想根据字符的第一个实例之前的键中的第一个字母或单词对其进行分组'_'
因此,最终结果将是Dictionary<string, Dictionary<string, string>>
。对于上面的示例,结果将是:
A -> A_FirstValue, 1
A_SecondValue, 2
B -> B_FirstValue, 1
B_SecondValue, 2
这甚至可能吗?任何人都可以帮助我吗?
谢谢。