Guest User

Untitled

a guest
Nov 15th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. boolean stop = false;
  2. List<String> list = new ArrayList<>();
  3. while (stop == false){
  4. try{
  5. String temp1 = regex1("=(.*?)<br\\/>", source);
  6. source = source.replace("=" + temp1 + "<br", "");
  7. list.add(temp1);
  8. }catch (Exception e){
  9. stop = true;
  10. }
  11. }
Add Comment
Please, Sign In to add comment