Skip to content

Instantly share code, notes, and snippets.

@TwiN
Last active November 13, 2016 21:04
Show Gist options
  • Save TwiN/19318d06d9c0a578820d0e9dde312598 to your computer and use it in GitHub Desktop.
Save TwiN/19318d06d9c0a578820d0e9dde312598 to your computer and use it in GitHub Desktop.
public static boolean isInString(String haystack, String needle) {
return (haystack.indexOf(needle) >= 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment