Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have two string :

 name="riyana's dream";
  shopname= "my flower shop name is riyana's dream and it is nice.";

now i want to check whether shopname contains the string name in it or not. i tried with shopname.contains(name) in java but it didn't work. actually shopname is fetched from mysql database. is it any problem?

please give me some idea about how to test whether shopname contains name in it or not.

share|improve this question
Are you sure exactly the String shopname is in the MySQL-database? I can't believe it. – Daniel Jan 14 '11 at 19:03
I'm with Daniel I'd print out the shopname to see what exactly is coming back from the database. – Shaded Jan 14 '11 at 19:09
2  
I assume one of the apostrophes is not what it seems to be. In unicode there are a lot of very similar characters sometimes of different languages. You should print out the hex codes of each character and see what character you really have: utf8-chartable.de – Robert Jan 14 '11 at 19:19

3 Answers

Have you tried this?

        String name ="riyana's dream";
  String shopName = "my flower shop name is riyana's dream and it is nice.";
        if(shopName.contains(name)){
         System.out.println("Yes");
        }else{
         System.out.println("No");
        }

It prints "Yes".

share|improve this answer

Special characters are no problem in Java. The contains() function works, so the problem is somewhere else.

If you use the JDBC API you can be sure the data is fetched correctly from the database. Please post more of your code.

share|improve this answer

The simple way is with contains method, i tried with your example and did work here is the code:

String name="riyana's dream";
String shopname= "my flower shop name is riyana's dream and it is nice.";
if(shopname.contains(name))
   System.out.println("shopname contains the string name");
else
   System.out.println("shopname NOT contains the string name");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.