fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. /* The class name doesn't have to be Main, as long as the class is not public. */
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. System.out.println("Begin Test");
  9.  
  10. String letters = "AAAAAAAA";
  11. String[] broken = letters.split("/A");
  12. System.out.println("Len is"+broken.length);
  13. for(int i = 0; i < broken.length; i++)
  14. System.out.println("Item " + i + ": " + broken[i]);
  15.  
  16. System.out.println("End Test");
  17. }
  18. }
Success #stdin #stdout 0.07s 380224KB
stdin
1
2
10
42
1
stdout
Begin Test
Len is1
Item 0: AAAAAAAA
End Test