fork download
  1.  
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. class MyHtmlTagRemover {
  8.  
  9. public static void main(String a[]){
  10. String text = "<B>I don't want this to be bold<\\B>";
  11. System.out.println(text);
  12. text = text.replaceAll("\\<.*?\\>", "");
  13. System.out.println(text);
  14. }
  15. }
Success #stdin #stdout 0.05s 4386816KB
stdin
Standard input is empty
stdout
<B>I don't want this to be bold<\B>
I don't want this to be bold