I am trying to check a string for certain characters. The characters are basically in a list. However, I don't know how to achieve this. The only idea I have is to loop through the string, checking the first character of the string against each character. For example, if my string is: "ablacablada", and the characters I want to check for are (l, d, e, f, h, p), I would check the index 0 in the "ablacablada" string. I would loop through the character list and see if the character at index 0 is "l". If not, I would move on to index 1, and so on. Here's my code:
public boolean stringChecker()
{
String newString = "ablacablada";
char [] newChar = {l; d; e; f; h; p};
String charString = new String(newChar)
boolean isString = false;
for (int i=0; i<charString.length(); i++)
{
for (int j=0; j<newString; j++)
{
if(charString.charAt(i) == newString.charAt(j))
{
isString = true; // a character in the list (l, d, e, f, h, p) is detected
}
else
{
isString = false;
}
}
}
return isString;
}
That's my idea. However, it doesn't work. If anyone could point me in the right direction, I'd be grateful. Thanks in advance.
P.S. Here's what I mean:
"a b l a c a b l a d a"
1. check the a from the character list.
Is "a" == "l"? No.
Is "a" == "d"? No.
Is "a" == "e"? No.
Is "a" == "f"? No.
Is "a" == "h"? No.
Is "a" == "p"? No.
2. Move on to index 1.
Is "b" == "l"? No.
Is "b" == "d"? No.
Is "b" == "d"? No...
And so on.