java.lang.String.regionMatches(int toffset, String other, int ooffset, int len)方法範例


java.lang.String.regionMatches(int toffset, String other, int ooffset, int len) 測試方法如果兩個字串的區域都是相等。這個String物件的子字串進行比較其他的子串引數。

其結果是true,如果這些子代表相同的字元序列。這個String物件的字串進行比較始於索引toffset和長度為len。其他的子字串進行比較始於索引offset和長度為len。

宣告

以下是java.lang.String.regionMatches()方法的宣告

public boolean regionMatches(int toffset, String other, int ooffset, int len)

引數

  • toffset -- the starting offset of the subregion in this string.

  • 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, will return false
    str2 = "Consists of different Tutorials";
    match1 = str1.regionMatches(14, str2, 22, 9); 
    System.out.println("region matched = " + match1);   
  }
}

讓我們編譯並執行上述程式,這將產生以下結果:

region matched = true
region matched = false