chivoX
Registered User
- Joined
- Mar 30, 2011
- Messages
- 452
- Age
- 40
Code:
for (int i=1;i>=legth;i++){
if ("Señor(a)".equals(test.substring(i, i+7)))
{
String oout = test.substring(i, i+25);
System.out.println(oout);
}
String oout = test.substring(i, i+25);
System.out.println(oout);
}
i have this all im tryin to do is trying to find "señor" and once i find it extract some info thats just after it. but its not even going on the for, dunno why, stupid java, maybe im just missing something, any of u guys knows anything about java ?