fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args)
  4. {
  5. String str = "あいうえお";
  6. String sub = str.substring(1, 3);
  7. System.out.println(sub);
  8. }
  9. }
Success #stdin #stdout 0.06s 32708KB
stdin
Standard input is empty
stdout
いう