Currently i am working in simple android app, I have tried to range of string in iphone, its works, but i didn’t know this in Android app?
In iphone:
result = "mobile - check balance | rate: 0.036"
if ( [result rangeOfString:@"rate:"].location != NSNotFound)
{
}
How to convert this in Android, please help me
Have you tried something like
result = “mobile- check balance | rate: 0.036”
I’ve been using objective-c recently too, and I pulled this from here