兄台,那是字符串处理的内容了,自己改吧
procedure TForm1.Button1Click(Sender: TObject);
var
s : string;
function GetURLAddr(const AURL: string): string;
var
strSource, strDest : string;
nIndex : Integer;
begin
strSource := AURL;
nIndex := Pos('/', strSource); // 第一个 /
strDest := Copy(strSource, 1, nIndex + 1);
Delete(strSource, 1, nIndex + 1);
nIndex := Pos('/', strSource); // 第一个 /
strDest := strDest + Copy(strSource, 0, nIndex);
delete(strSource, nIndex + 1, Length(strSource) - nIndex);
Result := strDest;
end;
begin
s := 'http://www.delphibbs.com/delphibbs/dispq.asp?LID=3217293';
Caption := GetURLAddr(s);
end;