在C#中,Match和Equals是两个不同的方法,它们的作用和用法也不同。
示例:
string pattern = @"^\d{3}-\d{3}-\d{4}$";
string input = "123-456-7890";
Match match = Regex.Match(input, pattern);
if (match.Success)
{
Console.WriteLine("Input matches the pattern");
}
示例:
string str1 = "hello";
string str2 = "world";
if (str1.Equals(str2))
{
Console.WriteLine("The two strings are equal");
}
总结来说,Match用于字符串匹配,主要用于正则表达式;Equals用于比较对象是否相等,根据对象的值进行比较。