C#如何比较两字符串大小
按ASCII码比较,stringstr1="Cubic_Key.Y";stringstr2="Cubic_Key.tga";两比较结果要求是str1<str2,最好能直接...
按ASCII码比较,
string str1 = "Cubic_Key.Y";
string str2 = "Cubic_Key.tga";
两比较结果要求是str1 < str2,最好能直接调用现成的函数。。 展开
string str1 = "Cubic_Key.Y";
string str2 = "Cubic_Key.tga";
两比较结果要求是str1 < str2,最好能直接调用现成的函数。。 展开
展开全部
送你个比较两个字符串的方法
//判断,如果str1大于str2,则true,or false
private bool compareString(string str1, string str2)
{
if (string.IsNullOrWhiteSpace(str1) || string.IsNullOrWhiteSpace(str2)) return false;
int n = str1.Length < str2.Length ? str1.Length : str2.Length;
for (int i = 0; i < n; i++)
{
if (str1[i] > str2[i]) return true;
else if (str1[i] < str2[i]) return false;
else continue;
}
if (str1.Length > str2.Length) return true;
else return false;
}
//判断,如果str1大于str2,则true,or false
private bool compareString(string str1, string str2)
{
if (string.IsNullOrWhiteSpace(str1) || string.IsNullOrWhiteSpace(str2)) return false;
int n = str1.Length < str2.Length ? str1.Length : str2.Length;
for (int i = 0; i < n; i++)
{
if (str1[i] > str2[i]) return true;
else if (str1[i] < str2[i]) return false;
else continue;
}
if (str1.Length > str2.Length) return true;
else return false;
}
展开全部
int i =String.Compare(str1,str2)
追问
你要先自己测试,你上面的结果会是i=1的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-03-12
展开全部
Compare()要重写
追问
试了Compare(str1,str2)和Compare(str1,str2,false),都是返回的str1大
试了CompareOrdinal(str1,str2),返回-27倒是能满足要求了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string有Compare()函数
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询