Skip to content

Instantly share code, notes, and snippets.

@thenaveensaggam
Created September 30, 2019 04:46
Show Gist options
  • Save thenaveensaggam/504bc80a0213e0cb7f98f2af36e7d976 to your computer and use it in GitHub Desktop.
Save thenaveensaggam/504bc80a0213e0cb7f98f2af36e7d976 to your computer and use it in GitHub Desktop.
public String endUp(String str) {
if(str.length() >= 3) {
return str.substring(0,str.length() - 3) + str.substring(str.length() - 3).toUpperCase();
}
else {
return str.toUpperCase();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment