Guest User

Untitled

a guest
Jun 25th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1.     public static String convertTagToNode(String html)
  2.     {
  3.         return html.replaceAll("<a id="(.*?)" onmousedown="alertfunc\\(this.id\\);"><font color="#8B008B">(.*?)</font></a>",
  4.         "<a id=\"$1\" onmousedown=\"alertfunc(this.id);\"><font color=\"#8B008B\">$2</font></a>");
  5.     }
Add Comment
Please, Sign In to add comment