将string.Contains()与switch()一起使用

本文关键字:一起 switch string Contains | 更新日期: 2023-09-27 18:06:27

我正在做一个c#应用程序,在那里我使用

if ((message.Contains("test")))
{
   Console.WriteLine("yes");
} else if ((message.Contains("test2"))) {
   Console.WriteLine("yes for test2");
}

是否有办法将if()语句更改为switch() ?

将string.Contains()与switch()一起使用

[C先生]回答的最终语法正确。

随着VS2017RC及其c# 7支持的发布,它是这样工作的:

switch(message)
{
    case string a when a.Contains("test2"): return "no";
    case string b when b.Contains("test"): return "yes";
}

您应该注意大小写排序,因为将选择第一个匹配。这就是为什么"test2"放在test之前。

不,switch语句需要编译时间常量。语句message.Contains("test")可以根据消息评估为真或假,因此它不是常量,因此不能用作switch语句的"case"。

如果您只想使用switch/case,您可以这样做,伪代码:

    string message = "test of mine";
    string[] keys = new string[] {"test2",  "test"  };
    string sKeyResult = keys.FirstOrDefault<string>(s=>message.Contains(s));
    switch (sKeyResult)
    {
        case "test":
            Console.WriteLine("yes for test");
            break;
        case "test2":
            Console.WriteLine("yes for test2");
            break;
    }

但是如果键的数量很大,你可以用dictionary替换它,像这样:

static Dictionary<string, string> dict = new Dictionary<string, string>();
static void Main(string[] args)
{
    string message = "test of mine";      
    // this happens only once, during initialization, this is just sample code
    dict.Add("test", "yes");
    dict.Add("test2", "yes2"); 

    string sKeyResult = dict.Keys.FirstOrDefault<string>(s=>message.Contains(s));
    Console.WriteLine(dict[sKeyResult]); //or `TryGetValue`... 
 }

这将在c# 8中使用切换表达式

工作
var message = "Some test message";
message = message switch
{
    string a when a.Contains("test") => "yes",
    string b when b.Contains("test2") => "yes for test2",
    _ => "nothing to say"
};

用于进一步参考https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/switch-expression

简单而高效的c#

 string sri = "Naveen";
    switch (sri)
    {
        case var s when sri.Contains("ee"):
           Console.WriteLine("oops! worked...");
        break;
        case var s when sri.Contains("same"):
           Console.WriteLine("oops! Not found...");
        break;
    }
string message = "This is test1";
string[] switchStrings = { "TEST1", "TEST2" };
switch (switchStrings.FirstOrDefault<string>(s => message.ToUpper().Contains(s)))
{
    case "TEST1":
        //Do work
        break;
    case "TEST2":
        //Do work
        break;
    default:
        //Do work
        break; 
}

您可以先进行检查,然后根据需要使用开关。

例如:

string str = "parameter"; // test1..test2..test3....
if (!message.Contains(str)) return ;
然后

switch(str)
{
  case "test1" : {} break;
  case "test2" : {} break;
  default : {} break;
}

在确定环境时面对这个问题,我想出了以下一行代码:

string ActiveEnvironment = localEnv.Contains("LIVE") ? "LIVE" : (localEnv.Contains("TEST") ? "TEST" : (localEnv.Contains("LOCAL") ? "LOCAL" : null));

这样,如果它在提供的字符串中找不到任何与"switch"条件匹配的东西,它就放弃并返回null。这可以很容易地修改为返回一个不同的值。

并不是严格意义上的一个开关,它更像是一个级联if语句,但是它很简洁,而且很有效。

可以这样创建一些自定义开关。也允许多例执行

public class ContainsSwitch
{
    List<ContainsSwitch> actionList = new List<ContainsSwitch>();
    public string Value { get; set; }
    public Action Action { get; set; }
    public bool SingleCaseExecution { get; set; }
    public void Perform( string target)
    {
        foreach (ContainsSwitch act in actionList)
        {
            if (target.Contains(act.Value))
            {
                act.Action();
                if(SingleCaseExecution)
                    break;
            }
        }
    }
    public void AddCase(string value, Action act)
    {
        actionList.Add(new ContainsSwitch() { Action = act, Value = value });
    }
}

像这样调用

string m = "abc";
ContainsSwitch switchAction = new ContainsSwitch();
switchAction.SingleCaseExecution = true;
switchAction.AddCase("a", delegate() { Console.WriteLine("matched a"); });
switchAction.AddCase("d", delegate() { Console.WriteLine("matched d"); });
switchAction.AddCase("a", delegate() { Console.WriteLine("matched a"); });
switchAction.Perform(m);

Stegmenn为我命名了它,但是当你有一个IEnumerable而不是像他的例子中的string = message时,我有一个改变。

private static string GetRoles(IEnumerable<External.Role> roles)
{
    string[] switchStrings = { "Staff", "Board Member" };
    switch (switchStrings.FirstOrDefault<string>(s => roles.Select(t => t.RoleName).Contains(s)))
    {
        case "Staff":
            roleNameValues += "Staff,";
            break;
        case "Board Member":
            roleNameValues += "Director,";
            break;
        default:
            break;
    }
}

这将在c# 7中工作。在撰写本文时,它尚未发布。但是如果我理解正确的话,这段代码可以工作。

switch(message)
{
    case Contains("test"):
        Console.WriteLine("yes");
        break;
    case Contains("test2"):
        Console.WriteLine("yes for test2");
        break;
    default:
        Console.WriteLine("No matches found!");
}

来源:https://blogs.msdn.microsoft.com/dotnet/2016/08/24/whats-new-in-csharp-7-0/

switch(message)
{
  case "test":
    Console.WriteLine("yes");
    break;                
  default:
    if (Contains("test2")) {
      Console.WriteLine("yes for test2");
    }
    break;
}