从C#Visual Studio中的字符串中提取值
public static string GetMacQ(string rawValues)
{
return rawValues.Split('#')
.Select(element =>
{
var value = element.Split('=');
return new
{
Key = value[0],
Value = value[1],
};
})
.Where(element => element.Key.Equals("Mac Q"))
.Select(element => element.Value)
.FirstOrDefault();
}
这段代码用于分割字符串,但这里的问题是它不返回键的值
public static string GetMacQ(string rawValues)
{
return rawValues.Split('#')
.Select(element =>
{
var value = element.Split('=');
return new
{
Key = value[0],
Value = value[1],
};
})
.Where(element => element.Key.Equals("Mac Q"))
.Select(element => element.Value)
.FirstOrDefault();
}
This code is for splitting the strings, but the problem here is it does not return the value of the key
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用linq
您可以检查/运行 https://dotnetfiddle.net/pytuul
完整示例代码
输出
Using Linq
You can check/run this code on https://dotnetfiddle.net/pYtUUl
Full example code
Output
这是代码:
Here is the code: