java.lang.String.regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len) 測試方法如果兩個字串的區域都是相等。這個String物件的子字串進行比較其他的子串引數。
其結果是true 如果這些子表示是相同的,忽略大小寫當且僅當IGNORECASE是真實的字元序列。這個String物件進行比較的字串開始處indextoffset和長度為len。其他的子字串進行比較始於索引ooffset和長度為len。
以下是java.lang.String.regionMatches()方法的宣告
public boolean regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len)
ignoreCase -- 如果為true,比較字元時忽略大小寫。
toffset -- 在此字串該次區域的起始偏移量。
other -- 字串引數。
ooffset -- 在字串引數的分割區域的起始偏移量。
len -- 用來比較的字元數。
如果此字串指定分割區的字串引數與指定的分割區匹配此方法返回true,否則返回false。
NA
下面的例子顯示java.lang.String.regionMatches()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str1 = "Collection of tutorials"; String str2 = "Consists of different tutorials"; /* matches characters from index 14 in str1 to characters from index 22 in str2 considering same case of the letters */ boolean match1 = str1.regionMatches(14, str2, 22, 9); System.out.println("region matched = " + match1); /* considering different case, "true" is set which will ignore case when matched */ str2 = "Consists of different Tutorials"; match1 = str1.regionMatches(true, 14, str2, 22, 9); System.out.println("region matched = " + match1); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
region matched = true region matched = true