Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package Stroki_Sumvoly;
  2.  
  3. public class Succeed {
  4.  
  5. public static void main(String[] args) {
  6. String mjQuote="I've failed over and over again in my life and that is why I succeed!";
  7. //Variant1
  8. System.out.println(mjQuote.substring(mjQuote.length()-8, mjQuote.length()-1));
  9. //Variant2
  10. System.out.println(mjQuote.substring(mjQuote.length()-"succeed".length()-1, mjQuote.length()-1));
  11.  
  12.  
  13. String quote="I succeed!";
  14. System.out.println(quote.substring(quote.length()-"succeed".length()-1, quote.length()-1));
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement