Logo

Programming-Idioms

  • C#
  • Rust
  • Pascal

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.

uses sysutils;
n := s.length;

Works correctly if s is of type UnicodeString and the string is not encoded using combining characters.
uses LazUtf8;
n := length(s);

Single byte encoding or widestring, plain pascal
uses LazUtf8;
n := Utf8Length(s);

UTF8-encoding, as used in Lazarus
int n = s.Length;
let n = s.chars().count();

This is kind of roundabout because the default len method gives bytes, not characters.
n : Integer := s'Length;

New implementation...