简体   繁体   English

如何使用LINQ C#基于多个条件更新列表

[英]How to update a list based on more than one Condition using LINQ C#

I have a String with Pipe Symbol " | " separated, I'm splitting the string and converted into a List<string> . 我有一个用竖线符号“ | ”分隔的字符串,我在分割字符串并转换为List<string> If the List<string> contains a string " fax ", then replace the string into " A " as same as string " phone " to string "B" using inline Single LINQ Statement. 如果List<string>包含字符串“ Fax ”,则使用嵌入式Single LINQ语句将该字符串替换为“ A ”,与字符串“ phone ”相同,替换为字符串“ B”。 Don't try to replace the base string str 不要尝试替换基本字符串str

string str = "fax|mobile|phone";
str.Split('|').Where(i => i.ToLowerInvariant() == "fax" || i.ToLowerInvariant() == "phone").ToList();

So, my expected output should be 因此,我的预期输出应为

List<string>() {"A", "B"}

Use select to transform your output. 使用select转换输出。

        str.Split('|')
           .Where(i => i.ToLowerInvariant() == "fax" || i.ToLowerInvariant() == "phone")
           .Select(x=> x=="fax"? "A" : x=="phone"? "B" : x)
           .ToList();

It is something like this: 它是这样的:

string str = "fax|mobile|phone";
var result = str.Split('|').Select(i => 
    string.Equals(i, "fax", StringComparison.InvariantCultureIgnoreCase) ? "A" : 
    string.Equals(i, "phone", StringComparison.InvariantCultureIgnoreCase) ? "B" : 
    null)
    .Where(i => i != null)
    .ToList();

Please don't change the case of a string to compare it. 请不要更改字符串的大小写以进行比较。 There are perfectly good methods to do case insensitive comparisons. 有进行区分大小写的比较的非常好的方法。

This code becomes quite unreadable pretty easily. 此代码非常容易变得不可读。 A better solution is to use a separate Dictionary<,> : 更好的解决方案是使用单独的Dictionary<,>

var dict = new Dictionary<string, string>(StringComparer.InvariantCultureIgnoreCase);
dict.Add("fax", "A");
dict.Add("phone", "B");

string str = "fax|mobile|phone";

var result = str.Split('|').Select(i => {
        string r;
        dict.TryGetValue(i, out r);
        return r;
    })
    .Where(i => i != null)
    .ToList();

Try this: 尝试这个:

        string str = "fax|mobile|phone";
        var result = str.Split('|').Where(i => i.ToLowerInvariant() == "fax" || i.ToLowerInvariant() == "phone").Select(i =>
            i.ToLowerInvariant() == "fax" ? "A" : "B").ToList();

I'm sure there is a better solution but here is my take: 我敢肯定有更好的解决方案,但这是我的看法:

string str = "fax|mobile|phone";
List<string> list = str.Split('|')
                       .Select(x => x.ToLowerInvariant() == "fax" ? "A" : x.ToLowerInvariant() == "phone" ? "B" : null)
                       .ToList();
list.Remove(null);

The list.Remove(null); list.Remove(null); could be replaced by a Where clause to get a one liner: 可以用Where子句代替以获取一个内衬:

List<string> list = str.Split('|')
                       .Select(x => x.ToLowerInvariant() == "fax" ? "A" : x.ToLowerInvariant() == "phone" ? "B" : null)
                       .Where(x => x != null)
                       .ToList();

A good idea would be to have a separate method to get the matched strings: 一个好主意是有一个单独的方法来获取匹配的字符串:

public string GetMatch(string s)
{
    // Easier to maintain
    return s.ToLowerInvariant() == "fax" ? "A" : s.ToLowerInvariant() == "phone" ? "B" : null;
}

Then do: 然后做:

List<string> list = str.Split('|')
                       .Select(x => GetMatch(x))
                       .Where(x => x != null)
                       .ToList();

Base on xanatos solution 基于xanatos解决方案

var string s = string.Empty;
var dic = new Dictionary<string,string>(StringComparer.InvariantCultureIgnoreCase)
{
  {"fax","a"},{"phone","b"}
}
var result = (from w in str.split('|') where dic.TryGetValue(w, out s) select s).toList();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM