美文网首页
判断字符串中是否包含某个字段

判断字符串中是否包含某个字段

作者: 心中有梦丶身边有你 | 来源:发表于2018-11-22 18:48 被阅读0次
    contains (判断 s 是否包含 ss ,包含返回true,不包含返回false)
    String s  = "你好!";
    String ss="你";
    boolean ii= s.contains(ss);
    if(ii==true){
    System.out.println("成功");
    }else if(ii==false){
    System.out.println("失败");
    }
    

    转载自:https://blog.csdn.net/luhanqiang/article/details/78021068

    相关文章

      网友评论

          本文标题:判断字符串中是否包含某个字段

          本文链接:https://www.haomeiwen.com/subject/hfkrqqtx.html