true;-6ren">
gpt4 book ai didi

c# - 检查字符串是否以给定字符串开头

转载 作者:太空狗 更新时间:2023-10-29 23:30:20 24 4
gpt4 key购买 nike

我是编程新手。我需要确定给定的字符串是否以某物开头。例如检查字符串是否以“hi”开头返回 true,但如果它是“high”则返回 false。

StartHi("hi there") -> true;
StartHi("hi") -> true;
StartHi("high five") -> false.

我尝试过使用 .Substring 和 .StartsWith,但我不知道如何让它们返回错误的“高五”。我试过这样的:

public static bool StartHi(string str)
{
bool firstHi;
if(string.IsNullOrEmpty(str))
{
Console.WriteLine("The string is empty!");
}
else if(str.Substring(0,2) == "hi")
{
firstHi = true;
Console.WriteLine("The string starts with \"hi\"");
}
else
{
firstHi = false;
Console.WriteLine("The string doesn't start with \"hi\"");
}
Console.ReadLine();

return firstHi;

}使用 .StartsWith,只需更改“else if”:

else if(str.StartsWith("hi"))
{
firstHi = true;
Console.WriteLine("The string starts with \"hi\"");
}

提前致谢!

最佳答案

我想到了两种方法来实现这一目标。第一种方法是将字符串拆分成一个数组,然后检查数组的第一个条目是否为“hi”:

string[] words = str.split(' ');
if ((words.length == 0 && str == "hi") || (words[0] == "hi"))
return true;
else
return false;

第二种方法是使用正则表达式并检查它是否与字符串开头的“hi”匹配:

return (System.Text.RegularExpressions.Regex.Match(str, @"^hi\b").Success);

然而,这两者都只会找到“hi”(具体情况)。如果您希望检查“hi”、“Hi”、“HI”或“Hi”,那么您可能希望对字符串对象使用“.ToLower()”方法:

string lowerStr = str.ToLower();
string[] words = lowerStr.split(' ');
if ((words.length == 0 && lowerStr == "hi") || (words[0] == "hi"))
return true;
else
return false;

StartHi 方法的示例可能如下所示:

public static bool StartHi(string str)
{
bool firstHi;
if(string.IsNullOrEmpty(str))
{
Console.WriteLine("The string is empty!");
}
else
{
string strLower = str.ToLower();
string[] words = strLower.split(' ');
if ((words.length == 0 && strLower == "hi") || (words[0] == "hi"))
{
firstHi = true;
Console.WriteLine("The string starts with \"hi\"");
}
else
{
firstHi = false;
Console.WriteLine("The string doesn't start with \"hi\"");
}
}
Console.ReadLine();
return firstHi;
}

如果您需要扩展您的标准,并将示例视为“嗨!”和“嗨?”作为成功,你应该倾向于 Regex 方法。在这种情况下,您的方法可能如下所示:

public static bool StartHi(string str)
{
bool firstHi;
if(string.IsNullOrEmpty(str))
{
Console.WriteLine("The string is empty!");
}
else if (System.Text.RegularExpressions.Regex.Match(str, @"^hi\b").Success))
{
firstHi = true;
Console.WriteLine("The string starts with \"hi\"");
}
else
{
firstHi = false;
Console.WriteLine("The string doesn't start with \"hi\"");
}
Console.ReadLine();
return firstHi;
}

关于c# - 检查字符串是否以给定字符串开头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31588673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com