Java.Lang 組件: Mono.Android.dll 比較兩個字串的語彙,忽略大小寫差異。 C#複製 [Android.Runtime.Register("compareToIgnoreCase","(Ljava/lang/String;)I","")]publicintCompareToIgnoreCase(stringstr); 參數 str String String要比較的
Compares this String to another String, ignoring case considerations. C# Kopija [Android.Runtime.Register("equalsIgnoreCase", "(Ljava/lang/String;)Z", "")] public bool EqualsIgnoreCase (string? anotherString); Parameters anotherString String The String to compare this String against Returns ...
HOME Java String String Case Requirements Write code to compare two string for equal Ignore Case using conditional operator Demo //package com.book2s; public class Main { public static void main(String[] argv) { String target1 = "book2s.com"; String target2 = "book2s.com"; ...
1)public int compareTo(String anotherString)//该方法是对字符串内容按字典顺序进行大小比较,通过返回的整数值指明当前字符串与参数字符串的大小关系。若当前对象比参数大则返回正整数,反之返回负整数,相等返回0。 2)public int compareToIgnore(String anotherString)//与compareTo方法相似,但忽略大小写。 3)public...
Compares thisStringto anotherString, ignoring case considerations. C# [Android.Runtime.Register("equalsIgnoreCase","(Ljava/lang/String;)Z","")]publicboolEqualsIgnoreCase(string? anotherString); Parameters anotherString String TheStringto compare thisStringagainst ...
1)public int compareTo(String anotherString)//该方法是对字符串内容按字典顺序进行大小比较,通过返回的整数值指明当前字符串与参数字符串的大小关系。若当前对象比参数大则返回正整数,反之返回负整数,相等返回0。 2)public int compareToIgnore(String anotherString)//与compareTo方法相似,但忽略大小写。
cs - The sequence to compare this String against Returns: true if this String represents the same sequence of char values as the specified sequence, false otherwise Since: 1.5equalsIgnoreCase public boolean equalsIgnoreCase(String anotherString) Compares this String to another String, ignoring case cons...
String str1 = "MACHINE"; String str2 = "machine"; String str; int result; Console.WriteLine(); Console.WriteLine("str1 = '{0}', str2 = '{1}'", str1, str2); Console.WriteLine("Ignore case:"); result = String.Compare(str1, 2, str2, 2, 2, true); str = ((result < 0...
String str1 = "MACHINE"; String str2 = "machine"; String str; int result; Console.WriteLine(); Console.WriteLine("str1 = '{0}', str2 = '{1}'", str1, str2); Console.WriteLine("Ignore case:"); result = String.Compare(str1, 2, str2, 2, 2, true); str = ((result < 0...
Console.WriteLine("Comparing '{0}' and '{1}':", stringUpper, stringLower); // Compare the uppercased strings; the result is true. Console.WriteLine("The Strings are equal when capitalized? {0}", String.Compare(stringUpper.ToUpper(), stringLower.ToUpper()) == 0 ? "true" : "false"...