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

 

posted @ 2017-09-30 09:50  岁月淡忘了谁  阅读(1757)  评论(0编辑  收藏  举报