View Single Post
  #2 (permalink)  
Old 12-03-2007, 12:34 PM
Hossam Saraya Hossam Saraya is offline
Member
 
Join Date: Dec 2007
Posts: 1
Hossam Saraya is on a distinguished road
you may include in ur while :

Code:
int i = yourStream.indexOf("the text u detect"); if(i > 1) { yourStream = yourStream.substring(i + yourStream.length()); System.out.println(yourStream); }
i had ur same problem when i made my java app which extracts the word meaning from an online dictionary. hope it helps..

regards
Reply With Quote