码迷,mamicode.com
首页 > 其他好文 > 详细

1.10 字符串比较 内容忽略大小写方法

时间:2017-05-10 00:21:06      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:rgs   ati   out   忽略   system   print   方法   字符   sign   

package Demo;

public class Demo4 {
 public static void main(String[] args) {
  String str = "helloworld";
  System.out.println(str.equals("Helloworld")); //false
  System.out.println(str.equalsIgnoreCase("Helloworld")); //true
 }
}

1.10 字符串比较 内容忽略大小写方法

标签:rgs   ati   out   忽略   system   print   方法   字符   sign   

原文地址:http://www.cnblogs.com/mengliang/p/6833322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!