In Java is there a way to check the condition:
"Does this single character appear at all in string x"
without using a loop?
Thank you,
|
|
In Java is there a way to check the condition: "Does this single character appear at all in string x" without using a loop? Thank you,
|
||
|
|
|
String.indexOf() |
||||||
|
|
|
|
||||||
|
|
|
To check if something does not exist in a string, you at least need to look at each character in a string. So even if you don't explicitly use a loop, it'll have the same efficiency. That being said, you can try using str.contains(""+char). |
||
|
|
|
Yes, using the indexOf() method on the string class. See the API documentation for this method |
||
|
|
|
|
I'm not sure what the original poster is asking exactly. Since indexOf(...) and contains(...) both probably use loops internally, perhaps he's looking to see if this is possible at all without a loop? I can think of two ways off hand, one would of course be recurrsion:
The other is far less elegant, but completeness...:
The number of lines grow as you need to support longer and longer strings of course. But there are no loops/recurrsions at all. You can even remove the length check if you're concerned that that length() uses a loop. |
||
|