0

我需要使用 C# 将自定义字符串拆分为以下格式。

以下字符串:AD=Demo,OU=WEB,OU=IT,L=MyCity,C=MyCountry,我想以逗号将其拆分为

List<CustomDictionary> myList = new List<CustomDictionary>();

根据上面的文字和拆分后的内容,myList列表应该包含 5 个 CustomDictionary 类型的对象。

 object1.Key = AD
 object1.Value = Demo

 object2.Key = OU
 object2.Value = WEB

 object3.Key = OU
 object3.Value = IT

 object4.Key = L
 object4.Value = MyCity

 object5.Key = C
 object5.Value = MyCountry

这是 CustomObject 类

 public class CustomDictionary
 {
     public string Key { get; set; }
     public string Value { get; set; }

     public CustomDictionary(string key, string value)
     {
         this.Key = key;
         this.Value = value;
     }
 }

到目前为止,我试过这个:

我在这里卡住了!

  List<CustomDictionary> keyVal = new List<CustomDictionary>val.Split(',').Select(x=>x.Split('=')).Select(x=>x.));

其中val是实际的字符串...

4

7 回答 7

5

使用 linq:

var query = from x in str.Split(',')
            let p = x.Split('=')
            select new CustomDictionary(p[0], p[1]);

var list = query.ToList();

结果,您似乎也想获得一本字典。如果是这样,请尝试以下代码:

var dict = str.Split(',').Select(x => x.Split('='))
                         .ToDictionary(x => x[0], x => x[1]);

要处理重复键,您可以将对象存储在Lookup中。只需调用ToLookup而不是ToDictionaty.

于 2013-01-12T17:53:34.163 回答
2

第二次拆分后,您CustomDictionary从该数组中的项目创建 a ,然后用于ToList制作结果列表。

List<CustomDictionary> keyVal =
  val.Split(',')
  .Select(x => x.Split('='))
  .Select(a => new CustomDictionary(a[0], a[1]))
  .ToList();

框架中已经有一个类具有键和值,您可以使用它们来代替:

List<KeyValuePair<string, string>> keyVal =
  val.Split(',')
  .Select(x => x.Split('='))
  .Select(a => new KeyValuePair<string, string>(a[0], a[1]))
  .ToList();

您还可以使用 aDictionary<string, string>而不是键值对列表。它根据键的哈希码存储值,因此通过键获取值比查看列表要快得多(但它不保留项目的顺序):

Dictionary<string, string> keyVal =
  val.Split(',')
  .Select(x => x.Split('='))
  .ToDictionary(a => a[0], a => a[1]);
于 2013-01-12T18:01:09.687 回答
1

由于您有 2 OUs,因此您无法使用Dictionary. 而是使用Lookup

string input = "AD=Demo,OU=WEB,OU=IT,L=MyCity,C=MyCountry";

var dict = Regex.Matches(input, @"(\w+)=([^,$]+)").Cast<Match>()
            .ToLookup(m => m.Groups[1].Value, m => m.Groups[2].Value);
于 2013-01-12T18:03:09.503 回答
1

你会这样做:

var parts = theString.Split(',');

var myList = new List<CustomDictionary>();
foreach(string part in parts)
{
  var kvp = part.Split('=');
  myList.Add(new CustomDictionary(kvp[0], kvp[1]));
}

这也可以使用 LINQ 完成。

于 2013-01-12T17:50:29.640 回答
0

MyString.split(',');得到的每个字符串怎么样?

CO.key = SubString.split('=')[0];
CO.value = SubString.split('=')[1];
于 2013-01-12T17:52:41.353 回答
0

使用 LINQ:

List<CustomDictionary> myList = (from x in input.Split(new char[] { ',' })
                                 select
                                 new CustomDictionary (x.Substring(0, x.IndexOf('=')), x.Substring(x.IndexOf('=') + 1))
                                ).ToList();
于 2013-01-12T17:56:50.323 回答
0
string str = "AD=Demo,OU=WEB,OU=IT,L=MyCity,C=MyCountry";

var result = str.Split(',').Select(s =>
{
    var tmp = s.Split('=');
    return new CustomDictionary(tmp[0], tmp[1]);
}).ToList();
于 2013-01-12T18:08:58.617 回答