split the string (eg.description), and use ":" as delimiter,

String [] result = description.split(":"); //result is an array of 3
elements "ID" "89790797" "ID"
String id = result[1];


-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to