How to search a word in a string?
For example
String text = \"Samsung Galaxy S Two\";
If I use text.contains(\"???\");<
text.contains(\"???\");
use indexOf:
indexOf
int i= string.indexOf('1');
or substring:
substring
String s=string.substring("koko",0,1);