I believe this program will work for most instances except one. I added spaces in indexOF() so words like cathrine and dogsuit lammas Would all be accepted as non profane. The only problem i see is if the user starts the line with cat/dog/llama. CAT! Would show up as non profane because there is no space at the start and there is no space afterwards, is there a String command to spread things out or am i completely on the wrong path?
import java.util.Scanner;
public class ProfanityFilter
{
public static void main(String[] args)
{
System.out.println (" welcome to the Profanity filter billboard service ");
System.out.println (" please enter a potential sign that contains the words \"cat\", \"dog\" or \"llama\"" );
Scanner keyboard = new Scanner (System.in);
String s1 = keyboard.nextLine();
s1 = s1.toLowerCase();
if (s1.indexOf(" cat ")!=-1 || s1.indexOf(" dog ") !=-1 || s1.indexOf(" llama ")!=-1)
System.out.println ("Profanity is in your Billboard");
else
System.out.println ("There is no profanity in your Billboard");
}
}