String length: Difference between revisions

PascalABC.NET
(Add Ecstasy example)
(PascalABC.NET)
Line 2,695:
<pre>
6
</pre>
 
 
=={{header|PascalABC.NET}}==
<syntaxhighlight lang="delphi">
##
var s := 'møøse';
Print(s.Length);
Print(System.Text.Encoding.Utf8.GetByteCount(s));
</syntaxhighlight>
{{out}}
<pre>
5 7
</pre>
 
222

edits