zoukankan      html  css  js  c++  java
  • java判断一个字符串是否包含某个字符

    一、contains方法

    1:描述

    java.lang.String.contains() 方法返回true,当且仅当此字符串包含指定的char值序列

    2:声明

    public boolean contains(CharSequence s)

    3:返回值

    此方法返回true,如果此字符串包含,否则返回false。

    4:实例

    复制代码
    public static void main(String[] args) {
        String str = "abc";
           boolean status = str.contains("a");
           if(status){
               System.out.println("包含");
           }else{
               System.out.println("不包含");
           }
    }
    复制代码

    二、indexOf方法

    1:描述

    java.lang.String.indexOf() 的用途是在一个字符串中寻找一个字的位置,同时也可以判断一个字符串中是否包含某个字符。

    2:声明

    int indexOf(int ch,int fromIndex)

    3:返回值

    indexOf的返回值为int

    4:实例

    复制代码
    public static void main(String[] args) {
        String str1 = "abcdefg";
           int result1 = str1.indexOf("a");
           if(result1 != -1){
               System.out.println("字符串str中包含子串“a”"+result1);
           }else{
               System.out.println("字符串str中不包含子串“a”"+result1);
           }
    }
    复制代码
  • 相关阅读:
    启动django报错
    celery简单使用
    git简单使用
    selinux干扰mysql启动
    python操作xml文件时,带有^M符号
    获取服务器内网地址
    WebStorm激活
    linux nohup python 后台运行无输出问题
    安装FTP
    sql server还原数据库代码
  • 原文地址:https://www.cnblogs.com/muhy/p/13685950.html
Copyright © 2011-2022 走看看