Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean isHave(String str, String s) {
if (s.equals("noSeparator")) {
return false;
} else {
if (str.indexOf(s) != -1) {
return true;
}
return false;
}
}
}