Java String regionMatches()方法无忽略大小写的简介说明

Java-教程王 Java教程 发布时间:2021-04-08 11:17:50 阅读数:16117 1

Java String regionMatches()方法

        regionMatches()方法的功能:用于检测两字符串指定区间上的内容是否相等

语法 

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

参数

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

返回值

  当 两个字符串指定区间上的内容相同时,则返回true,否则返回false

import java.io.*;
public class testClass{

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

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

      System.out.print("Return Value :" );
      System.out.println(Str1.regionMatches(11, Str3, 0, 4));
   }
}
-----运行以上代码,将返回以下信息----
Return Value :false
Return Value :true
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaCourse/170.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者