位置:首頁 > Java技術 > java.lang > java.lang.String.regionMatches(int toffset, String other, int ooffset, int len)方法實例

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