I've been trying that, but without much success:
String whatIShouldSay = "no more beer please!";
String whatIActuallySay = whatIShouldSay.substring(3,-1);
System.out.println (whatIActuallySay);
But it doesn't work like that. But why so? What could I do instead? As a workaround I could do:
whatIShouldSay.substring(3,whatIShouldSay.length());
But that doesn't feel like an elegant solution to me. Would be grateful for a hint! :)
P.S.: Would you write "should" in "whatIShouldSay" with a lowercase or with an uppercase "s"?