Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C#

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.

char c = s[^1];
final c = s[s.length - 1];

This will fail on an empty string

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