如何检查另一个字符串中是否存在一个字符串

本文关键字:字符串 存在 一个 是否 另一个 何检查 检查 | 更新日期: 2023-09-27 17:53:56

希望有人能帮助我。我只是在学习C#,我有一个简单的问题。

我有一个变量,我想检查它是否存在于另一个字符串中。类似的东西

if ( test contains "abc" ) {
}

有没有一种简单的方法可以在 C# 中做到这一点

如何检查另一个字符串中是否存在一个字符串

使用 String.Contains:

if (stringValue.Contains(anotherStringValue))
{  
    // Do Something // 
}

IndexOf()函数将完成工作...
如果字符串不存在,它将返回 -1

string MainString = "String Manipulation"; 
string SearchString = "pul"; 
int FirstChr = MainString.IndexOf(SearchString); 

此代码演示如何在字符串中搜索子字符串,并返回开始的索引位置或指示未找到字符串的 -1。

你也可以使用 Contains() ,包含 是字符串类型的实例方法,这意味着你可以对程序中的特定字符串调用它。它有一个布尔结果,如果找到参数,则为真,如果未找到参数,则为假。

using System;
class Program
{
    static void Main()
    {
    Test("Dot Net Perls");
    Test("dot net perls");
    }
    static void Test(string input)
    {
    Console.Write("--- ");
    Console.Write(input);
    Console.WriteLine(" ---");
    //
    // See if the string contains 'Net'
    //
    bool contains = input.Contains("Net");
    //
    // Write the result
    //
    Console.Write("Contains 'Net': ");
    Console.WriteLine(contains);
    //
    // See if the string contains 'perls' lowercase
    //
    if (input.Contains("perls"))
    {
        Console.WriteLine("Contains 'perls'");
    }
    //
    // See if the string contains 'Dot'
    //
    if (!input.Contains("Dot"))
    {
        Console.WriteLine("Doesn't Contain 'Dot'");
    }
    }
}

检查 C# 字符串函数和操作以获取有关字符串的任何内容。

使用String.Contains(...)可能不是一个好主意。

String.Contains(...)执行序号区分大小写的比较。因此,请注意大小写匹配。

当然,您可以在检查之前使用ToLower()ToUpper()

参考这个。

String.Contains(...)
if (stringValue.ToUpper().Contains("FIND_THIS"))
{  
    // Do Something // 
} 

是不区分大小写的搜索的另一个很好的变体。

您必须使用正则表达式。例如Regex.IsMatch(test, "abc") .如果测试包含 abc,这将返回 true。

Use 可以使用String.Contains

if (test.Contains("abc"))
{  
    // Your Code Here
}
有一些

方法可以做这个验证,如CompareToContainsCompareIndexOfAnyIndexOf

检查String类的方法列表。

string s1 = "ani'u00ADmal";
string s2 = "animal";
string s3 = "abc";
string s4 = "abc";
string s5 = "ABC";
bool b1 = s1.CompareTo(s2) > -1; // return true, exists
bool b2 = s3.CompareTo(s4) > -1; // return true, exists
bool b3 = s3.CompareTo(s5) > -1; // return false, no case sensitive, no exists
bool b4 = s1.Contains(s2); // return false, no exists
bool b5 = s3.Contains(s4); // return true, exists
bool b6 = s3.Contains(s5); // return false, no case sensitive, no exists
string s6 = "MACHINE";
string s7 = "machine";
string s8 = "nature";
int a = String.Compare(s6, 0, s7, 0, s6.Length, true);  // return 0, contain and is less 
int b = String.Compare(s6, 0, s7, 0, s6.Length, false); // return 1, contain and is greater
int c = String.Compare(s6, 0, s8, 0, s6.Length, true);  // return -1, no contain
int d = String.Compare(s6, 0, s8, 0, s6.Length, false);  // return -1, no contain
int e = s1.IndexOfAny(s2.ToCharArray()); // return 0, exists
int f = s3.IndexOfAny(s4.ToCharArray()); // return 0, exists
int g = s3.IndexOfAny(s5.ToCharArray()); // return -1, no case sensitive, no exists
int h = s1.IndexOf(s2); // return 0, exists
int i = s3.IndexOf(s4); // return 0, exists
int j = s3.IndexOf(s5); // return -1, no exists
您可以使用

.Contains(),但也可以使用.ToUpper() .Contains()区分大小写。

if(string1.ToUpper().Contains(string2.ToUpper())
{
    //Your code goes here
}