Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public static String removeTag(String inputedText) {
  2. String text = inputedText;
  3. if (text != null) {
  4. text = text.replaceAll("<", "<");
  5. text = text.replaceAll(">", ">");
  6. }
  7. return text;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement