Skip to content

Instantly share code, notes, and snippets.

@Gratsh
Created November 15, 2018 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gratsh/f668f04489c78f8ed20ede9beaabe510 to your computer and use it in GitHub Desktop.
Save Gratsh/f668f04489c78f8ed20ede9beaabe510 to your computer and use it in GitHub Desktop.
123
boolean stop = false;
List<String> list = new ArrayList<>();
while (stop == false){
try{
String temp1 = regex1("=(.*?)<br\\/>", source);
source = source.replace("=" + temp1 + "<br", "");
list.add(temp1);
}catch (Exception e){
stop = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment