Java String regionMatches()方法无忽略大小写的简介说明
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
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。