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

 

orion.a.smith@gmail.com hcs-strings > apcsaStringsGimmeLastFive
prev  |  next  |  chance

Given an input String, return a String containing the last five characters of the input (in order). Precondition: the input will have at least five characters.


HINT

You will need the length() and substring() methods to solve this problem.

apcsaStringsGimmeLastFive("Wave hello") → "hello"
apcsaStringsGimmeLastFive("Wave goodbye") → "odbye"
apcsaStringsGimmeLastFive("Say cheese") → "heese"

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

public String apcsaStringsGimmeLastFive(String str) { }

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: 130

Copyright Nick Parlante 2017 - privacy