java判断A字符串是否包含B字符串详解编程语言

public static void main(String[] args) { 
  String str = "ABC_001"; 
  if (str.indexOf("ABC") != -1) { 
    System.out.println("包含"); 
  } else { 
    System.out.println("不包含"); 
  } 
}

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/16027.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论