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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the
String.containsmethod.A slighly more general approach would be to do use regular expressions:
If you’re interested in where the substring occurs. Use the
String.indexOfmethod.