pascalabcnet/InstallerSamples/WhatsNew/3_8_1/ZeroBasedStringsDirective.pas
Mikhalkovich Stanislav 8682125251 Added & Changed examples
2022-04-18 15:23:21 +03:00

11 lines
438 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{$zerobasedstrings}
begin
// Директива воздействует на доступ по индексу и на срезы
// Директива глобальна и распространяется на весь файл
var s := '0123456789';
Println(s[0:5],s[5:8],s[8:]); // 01234 567 89
// Директива НЕ воздействует на доступ по индексу с конца
Print(s[^1]);
end.