fork download
  1. /*
  2. l'L'l
  3. */
  4.  
  5. import java.io.*;
  6.  
  7. class Test{
  8. public static void main(String args[]){
  9. String p = new String("IPhone 5s $400");
  10. String r = p.replaceAll("($)","\\|\\$");
  11.  
  12. String[] s = r.split("\\|");
  13. System.out.println(s[0]); // IPhone 5s
  14. System.out.println(s[1]); // $400
  15. }
  16. }
Success #stdin #stdout 0.07s 380160KB
stdin
Standard input is empty
stdout
IPhone 5s 
$400