使用Linq从字符串中提取键值

时间:2013-06-04 07:05:08

标签: linq c#-4.0

在某种情况下,我发送HTTP请求并从服务器获取此响应字符串。

submitstatus: 0
smsid: 255242179159525376

         var streamResponse = newStreamReader(response.GetResponseStream()).ReadToEnd().ToString();

我想使用LINQ提取键值。 LINQ的新任何建议。

2 个答案:

答案 0 :(得分:2)

我使用output字符串来模拟结果

string output = @"submitstatus: 0
smsid: 255242179159525376";

// you can use regex to match the key/value
// what comes before `:` will be the key and after the value
var matches = Regex.Matches(output, @"(?<Key>\w+):\s(?<Value>[^\n]+)");

// for each match, select the `Key` match as a Key for the dictionary and
// `Value` match as the value
var d = matches.OfType<Match>()
    .ToDictionary(k => k.Groups["Key"].Value, v => v.Groups["Value"].Value);

所以你将拥有一个带有键和值的Dictionary<string, string>


使用Split方法

var keysValues = output.Split(new string[] { ":", "\r\n" },
                     StringSplitOptions.RemoveEmptyEntries);

Dictionary<string, string> d = new Dictionary<string, string>();
for (int i = 0; i < keysValues.Length; i += 2)
{
    d.Add(keysValues[i], keysValues[i + 1]);
}

尝试纯粹使用Linq

var keysValues = output.Split(new string[] { ":", "\r\n" },
                     StringSplitOptions.RemoveEmptyEntries);
var keys = keysValues.Where((o, i) => (i & 1) == 0);
var values = keysValues.Where((o, i) => (i & 1) != 0);
var dictionary = keys.Zip(values, (k, v) => new { k, v })
                     .ToDictionary(o => o.k, o => o.v);

答案 1 :(得分:0)

为什么不使用正则表达式? Smth喜欢:

(?<=submitstatus:\s)\d+ 

用于submitstatus 和

(?<=smsid:\s)\d+ 

对于smsid