Logo

Programming-Idioms

  • Ada
  • Java

Idiom #340 Last character of string

Assign to c the value of the last character of the string s.

Explain the type of c, and what happens if s is empty.

Make sure to properly handle multi-bytes characters.

import static java.lang.Character.isSurrogate;
int n = s.length(), i = n - 1;
if (isSurrogate(s.charAt(i))) --i;
String c = s.substring(i);

"... [In Java] a String represents a string in the UTF-16 format in which supplementary characters are represented by surrogate pairs (see the section Unicode Character Representations in the Character class for more information)."
char c = s[^1];

New implementation...
< >
programming-idioms.org