id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

srp4379@lausd.net 2-stringbasics > getSecondToLastLetter
prev  |  next  |  chance

public String getSecondToLastLetter(String s)

Given a String, return ONLY its SECOND-TO-LAST letter.

Notice in the solution below that you need the second stop parameter!
That is you start at len-2 and stop at len-1!

public String getSecondToLastLetter(String s) {
  int len = s.length();
  String str = s.substring(len-2,len-1);
  return str;
}

getSecondToLastLetter("abcd") → "c"
getSecondToLastLetter("1234") → "3"
getSecondToLastLetter("Hollow") → "o"

...Save, Compile, Run (ctrl-enter)

public String getSecondToLastLetter(String s) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 11

Copyright Nick Parlante 2017 - privacy