當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java String regionMatches()用法及代碼示例



描述

此方法有兩個變體,可用於測試兩個字符串區域是否相等。

用法

這是此方法的語法 -

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

參數

這是參數的詳細信息 -

  • toffset- 該字符串中子區域的起始偏移量。

  • other- 字符串參數。

  • ooffset- 字符串參數中子區域的起始偏移量。

  • len- 要比較的字符數。

返回值

  • 如果此字符串的指定子區域與字符串參數的指定子區域匹配,則返回 true;否則為假。匹配是精確匹配還是不區分大小寫取決於 ignoreCase 參數。

示例

import java.io.*;
public class Test {

   public static void main(String args[]) {
      String Str1 = new String("Welcome to Tutorialspoint.com");
      String Str2 = new String("Tutorials");
      String Str3 = new String("TUTORIALS");

      System.out.print("Return Value:" );
      System.out.println(Str1.regionMatches(11, Str2, 0, 9));

      System.out.print("Return Value:" );
      System.out.println(Str1.regionMatches(11, Str3, 0, 9));
   }
}

這將產生以下結果 -

輸出

Return Value:true
Return Value:false

相關用法


注:本文由純淨天空篩選整理自 Java - String regionMatches() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。