Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. html = responseBody;
  2.  
  3. video = "";
  4. imagina = "";
  5. desc = "";
  6.  
  7. video = reg.getBack(html, "property="og:video" content="([^"]+)"");
  8. imagina = reg.getBack(html, "property="og:image" content="([^"]+)"");
  9.  
  10.  
  11. try {
  12. int start = html.indexOf(""caption":") + 12;
  13.  
  14. String starting = html.substring(start);
  15. int end = starting.indexOf(""");
  16. desc = starting.substring(0, end).replace("\n", "");
  17. }catch (Exception e){
  18. desc="";
  19. }
  20. mDialog();
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement