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