gnn40036

Java 实例 - 测试两个字符串区域是否相等

以下实例使用了 regionMatches() 方法测试两个字符串区域是否相等:

StringRegionMatch.java 文件

public class StringRegionMatch{
   public static void main(String[] args){
      String first_str = "Welcome to Microsoft";
      String second_str = "I work with microsoft";
      boolean match1 = first_str.
      regionMatches(11, second_str, 12, 9);
      boolean match2 = first_str.
      regionMatches(true, 11, second_str, 12, 9); //第一个参数 true 表示忽略大小写区别
      System.out.println("区分大小写返回值:" + match1);
      System.out.println("不区分大小写返回值:" + match2);
   }
}

first_str.regionMatches(11, second_str, 12, 9) 表示将 first_str 字符串从第11个字符"M"开始和 second_str 字符串的第12个字符"M"开始逐个比较,共比较 9 对字符,由于字符串区分大小写,所以结果为false。

如果设置第一个参数为 true ,则表示忽略大小写区别,所以返回 true。

以上代码实例输出结果为:

区分大小写返回值:false 
不区分大小写返回值:true

分类:

技术点:

相关文章:

  • 2021-11-18
  • 2021-04-03
  • 2022-01-21
  • 2022-12-23
  • 2021-09-23
  • 2021-11-26
  • 2021-08-13
猜你喜欢
  • 2021-11-12
  • 2022-02-05
  • 2022-12-23
  • 2021-10-26
  • 2021-12-03
  • 2021-12-23
  • 2021-11-25
相关资源
相似解决方案