Logo

Programming-Idioms

  • Rust
  • Go
  • Scala

Idiom #169 String length

Assign to the integer n the number of characters of the string s.
Make sure that multibyte characters are properly handled.
n can be different from the number of bytes of s.

val n = s.length()
let n = s.chars().count();

This is kind of roundabout because the default len method gives bytes, not characters.
import "unicode/utf8"
n := utf8.RuneCountInString(s)

This assumes that s is encoded in UTF-8 (which is idiomatic in Go).
n : Integer := s'Length;

New implementation...