Java String regionMatches()方法具有什么功能呢?
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
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。