Вниз
Скачать: CL | DM;

есть вхождение подстроки в строку   Найти похожие ветки 

 
laser ©   (2003-01-09 17:52) [0]

как узнать рядом (слева и права) стояшие слова СПАСИБО


 
Mike Kouzmine   (2003-01-09 17:58) [1]

Pos ?


 
Verg ©   (2003-01-09 17:59) [2]


function SeparateLeft(const Value, Delimiter: string): string;
var
x: Integer;
begin
x := Pos(Delimiter, Value);
if x < 1 then
Result := Trim(Value)
else
Result := Trim(Copy(Value, 1, x - 1));
end;

{==============================================================================}

function SeparateRight(const Value, Delimiter: string): string;
var
x: Integer;
begin
x := Pos(Delimiter, Value);
if x > 0 then
x := x + Length(Delimiter) - 1;
Result := Trim(Copy(Value, x + 1, Length(Value) - x));
end;




 
laser ©   (2003-01-09 18:12) [3]

СПАСИБО !!! Verg !!!



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.014 c
1-62448
Валерий
2003-01-07 19:05
2003.01.20
TreeView Codepage for nodes


4-62891
Igor45
2002-12-02 13:22
2003.01.20
Sol.exe must die!!!


4-62916
Agent_Alex
2002-12-03 17:48
2003.01.20
Товарищи мастера нужна ваша помощь...


3-62377
leonon
2002-12-24 16:03
2003.01.20
Работа с базой по сети


14-62805
Дмитрий К.К.
2003-01-01 07:08
2003.01.20
Именинники 1 января




   Наверх