6 lines
125 B
ObjectPascal
6 lines
125 B
ObjectPascal
##
|
|
var s := 'møøse';
|
|
// Byte Length
|
|
Print(s.Length);
|
|
// Character Length
|
|
Print(System.Text.Encoding.Utf8.GetByteCount(s));
|