Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • 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 LazUtf8;
n := length(s);

Single byte encoding or widestring, plain pascal
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 := Utf8Length(s);

UTF8-encoding, as used in Lazarus
n : Integer := s'Length;

New implementation...