Logo

Programming-Idioms

  • Lua
  • Go

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.

r := []rune(s)
c := r[len(r)-1]

c has type rune.

Panics if s is empty.
import "unicode/utf8"
c, _ := utf8.DecodeLastRuneInString(s)

c has type rune.

Returns utf8.RuneError if s is empty or if the encoding of s is invalid UTF-8.
char c = s[^1];

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