当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。