var str:string;
    int:integer;
begin
  str:='http://www.csdn.net';
  if copy(str,1,pos('/',str))='http:' then showmessage('HTTP协议');
  str:='ftp://www.csdn.net';
  if copy(str,1,pos('/',str))='ftp:' then showmessage('FTP协议');
end;