zoukankan      html  css  js  c++  java
  • Java判断一个字符串中包含另一字符串

    1、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("不包含");  
            }  
        }  

    2、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);  
        }  
    } 
  • 相关阅读:
    Android悬浮窗拖动
    git提交错误问题如何解决?
    STM32单片机使用注意事项
    C指针说明
    cygwin注意事项
    关于百度地图的使用问题
    Android GIS osmdroid地图使用
    三个能力构建人生护城河
    浪潮之醒
    MingGW Posix VS Win32
  • 原文地址:https://www.cnblogs.com/svipero/p/12841458.html
Copyright © 2011-2022 走看看