The remove.charAt() does not seem to work so I was wondering if there was something, where I input an int and it tells me what character is at that point? Again if anyone has any ideas it would be greatly appreciated. :-)
public static String removeYak(String remove)
{
String fina1 = "";
for(int y = 0; y < remove.length(); y++)
{
if(remove.toLowerCase().charAt(y) == "y")
{
if(remove.toLowerCase().charAt(y+1) == "a")
{
if(remove.toLowerCase().charAt(y+2) == "k")
{
fina1 = str.substring(k+1);
}
}
}
}
return fina1;
}