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.