Java String regionMatches() 方法

返回 Java Strings 类


regionMatches() 方法有两种形式,可用于测试两个字符串部分是否相等。

语法

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

参数

  • toffset - 此字符串中子区域的起始偏移量。
  • other - 字符串参数。
  • ooffset - 字符串参数中子区域的起始偏移量。
  • len - 要比较的字符数。

返回值

如果此字符串的指定子区域与字符串参数的指定子区域匹配,则返回 true; 否则为假。 区分大小写

示例

public class Main {

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

      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 Strings 类

查看笔记

扫码一下
查看教程更方便