Java 字符串包含示例。


字符串类的contains() 方法仅在该字符串包含指定 char 值序列时返回 true。

示例

在线演示

import java.lang.*;
public class StringDemo {
   public static void main(String[] args) {
      String str1 = "tutorials point", str2 = "http://";
      CharSequence cs1 = "int";

      // string contains the specified sequence of char values
      boolean retval = str1.contains(cs1);
      System.out.println("Method returns : " + retval);

      // string does not contain the specified sequence of char value
      retval = str2.contains("_");
      System.out.println("Methods returns: " + retval);
   }
}

输出

Method returns : true
Methods returns: false

更新日期:2020年2月26日

163 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告