Java String regionMatches()方法具有什么功能呢?

Java-教程王 Java教程 发布时间:2021-04-08 09:27:19 阅读数:18619 1

Java String regionMatches()方法的功能说明

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

语法

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

参数

  • ignoreCase:是否忽略大小写
  • 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");

        System.out.print("(ignoreCase=true):");
        System.out.println(Str1.regionMatches(true, 11, Str2, 0, 4));
        System.out.print("(ignoreCase=false):");
        System.out.println(Str1.regionMatches(false, 11, Str2, 0, 4));
    }
}
-----运行以上代码,将输出以下信息----
(ignoreCase=true):true
(ignoreCase=false):false
 
版权声明

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

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

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

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

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者