Click here to Skip to main content
15,905,414 members

Comments by Mohammed Ahmed Gouda (Top 50 by date)

Mohammed Ahmed Gouda 30-May-11 6:18am View    
public class subString {
public void checkSubString(String smallString, String bigString)
{
int start;
boolean flag =false;

for (int i = 0; i < 19; i++) {
start=i;
for (int j= 0; j < 3; j++) {
if(smallString.charAt(start)==bigString.charAt(j))
{
flag=true;
}
}
if(flag)
{
System.out.println("( "+smallString+" is subString from " + bigString + ")");
break;
}

}


}
}

this is the right solution or not ??
Mohammed Ahmed Gouda 17-May-11 5:54am View    
which database engine to use with windows mobile 5 or higher
Mohammed Ahmed Gouda 17-May-11 5:45am View    
this is sqlce not normal sql
Mohammed Ahmed Gouda 11-May-11 7:46am View    
thx so much :) finally solved
Mohammed Ahmed Gouda 11-May-11 7:38am View    
it returns result :)