fork(33) download
  1.  
  2. import java.util.*;
  3. import java.lang.*;
  4. import java.io.*;
  5.  
  6. class Ideone
  7. {
  8. public static void main (String[] args) throws java.lang.Exception
  9. {
  10.  
  11. String input = "<font size=\"5\"><p>some text</p>\n<p>another text</p></font>";
  12. String stripped = input.replaceAll("<[^>]*>", "");
  13. System.out.println(stripped);
  14. }
  15. }
Success #stdin #stdout 0.04s 711168KB
stdin
Standard input is empty
stdout
some text
another text