1.12 判断字符串第一次出现的位子 和 字符串是否存在

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.12 判断字符串第一次出现的位子 和 字符串是否存在相关的知识,希望对你有一定的参考价值。

package Demo;

public class Demo4 {
 public static void main(String[] args) {
  String str = "helloworld";
   /*if(str.indexOf("hello")!=-1){
    System.out.println("位置是:"+str.indexOf("hello"));  // 位置是:0
   
   }else{
    System.out.println(-1); 
   }*/
  
  
  //检查是否存在
  if(str.contains("hello")){
   System.out.println("位置是:"+str.contains("hello"));
  }else{
    System.out.println(-1); // 位置是:true
   }
 }
}

以上是关于1.12 判断字符串第一次出现的位子 和 字符串是否存在的主要内容,如果未能解决你的问题,请参考以下文章

SQL Server中判断字符串出现的位置及字符串截取

php中判断一个字符是否在字符串中

算法字符串模块判断字符串是否都只出现过一次

Hive截取指定位子或字符后面的数据

34.第一次值出现一次的字符

字符串中出现一次的字符出现的位置