参数字符串有没有空格?用什么分割单词?
形如 "I love You"的字符串
private string GetFirstWord(string str)
{
if(!string.IsNullOrEmpty(str))
{
string[] strs = str.Split(' ');
foreach (string s in strs)
{
str = strs[0];
}
}
return str;
}
参数字符串有没有空格?用什么分割单词?
形如
"I
love
You"的字符串
private
string
GetFirstWord(string
str)
{
if(!string.IsNullOrEmpty(str))
{
string[]
strs
=
str.Split('
');
foreach
(string
s
in
strs)
{
str
=
strs[0];
}
}
return
str;
}