I have a word
"unspecified"
, I want to search this word in string, ie.: "777 unspecifieduser 330"
I want to know this string have "unspecified" word or not?
in java, i'll appreciate the details
thanks in advance
|
|
|
Use the
A slighly more general approach would be to do use regular expressions:
If you're interested in where the substring occurs. Use the |
||||
|
|
|
You don't have to use indexOf(), that's only useful if you want to do string manipulation. If you simply want to test for "existence", the contains method will suffice. You can use the contains method as follows:
|
|||
|
|
|
|||
|
|