pascalabcnet/InstallerSamples/WhatsNew/3_11_1/CountOf_s.pas
Mikhalkovich Stanislav 18709a5cb8 Примеры улучшил добавил
Вернул GitIgnoreTester
2026-02-03 13:48:56 +03:00

6 lines
166 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.

// 3.11.1. CountOf с параметром allowOverlap
begin
var s := 'arara';
s.CountOf('ara').Println;
s.CountOf('ara',allowOverlap := True).Println;
end.