This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-10 20:32:51 +03:00

30 lines
1.0 KiB
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.

var s1,s2: string;
begin
// Определение длины строки
s1 := 'ABCDEFGH';
Writeln(s1.Length);
// Сравнение строк без учета регистра символов
s1 := 'AAA';
s2 := 'aaa';
if String.Compare(s1, s2, {ignoreCase - без учета регистра} true) = 0 then
Writeln('Строки совпадают с точностью до регистра букв');
// Определение вхождений подстрок
s1 := 'Long string';
s2 := 'string';
if s1.EndsWith(s2) then
Writeln('В конце строки s1 содержится подстрока, совпадающая с s2');
// Поиск индекса вхождения подстроки в строку
Writeln(s1.IndexOf(s2));
// Извлечение подстрок
s1 := 'ABCDEFGH';
s2 := s1.Substring( ачальная_позиция = } 3);
Writeln(s2);
s2 := s1.Substring(3, {длина_подстроки = } 2);
Writeln(s2);
end.