fork download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String test = "(NP (DT the) (NNP sample) (NN program))";
  9. test = test.replaceAll("\\((NP|JJ|NNS|NNP|NN|DT|CD|FW|WHNP|WDT|VBN|PRP)", "");
  10. System.out.println( test);
  11. }
  12. }
Success #stdin #stdout 0.08s 380160KB
stdin
Standard input is empty
stdout
  the)  sample)  program))