Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. String body = "You have bought USD 1.00 Whatsapp for 784024487. Your new wallet balance is USD 1.04. Happy Birthday EcoCash for turning 7years. Live Life the EcoCash Way.";
  2. String regex="([0-9]+[.][0-9]+)";
  3. Pattern pattern=Pattern.compile(regex);
  4. Matcher matcher=pattern.matcher(body);
  5. while(matcher.find())
  6. {
  7. String detail = "Airtime";
  8. transUtilsList.add(new TransUtils(detail,+matcher.group(),matcher.group()));
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement