Java 實例 - 測試兩個字符串區(qū)域是否相等
以下實例使用了 regionMatches() 方法測試兩個字符串區(qū)域是否相等:
//StringRegionMatch.java 文件 public class StringRegionMatch{ public static void main(String[] args){ String first_str = "Welcome to Microsoft"; String second_str = "I work with microsoft"; boolean match1 = first_str. regionMatches(11, second_str, 12, 9); boolean match2 = first_str. regionMatches(true, 11, second_str, 12, 9); //第一個參數(shù) true 表示忽略大小寫區(qū)別 System.out.println("區(qū)分大小寫返回值:" + match1); System.out.println("不區(qū)分大小寫返回值:" + match2); } }
first_str.regionMatches(11, second_str, 12, 9) 表示將 first_str 字符串從第11個字符"M"開始和 second_str 字符串的第12個字符"M"開始逐個比較,共比較 9 對字符,由于字符串區(qū)分大小寫,所以結(jié)果為false。
如果設(shè)置第一個參數(shù)為 true ,則表示忽略大小寫區(qū)別,所以返回 true。
以上代碼實例輸出結(jié)果為:
區(qū)分大小寫返回值:false 不區(qū)分大小寫返回值:true
更多建議: