功能:查找两个字符串有没有相同的部分

function SearchInStrings(const Str1,Str2 : string) : Boolean;
{ ----功能:查找两个字符串有没有相同的部分----- }
var
  S1,S2 : string;
  I : integer;
  Found : boolean;
begin
  S1 := Str1;
  S2 := Str2;
  Found := false;
  for I := 1 to Length(S1) do  //先找到第一个相同的字符
    if (Pos(S1[I], S2)>0) then
       begin
       Found := true;
       Break;
       end;
  if Found then
     begin
     S2 := Copy(S2, Pos(S1[I],S2), MaxInt);
     S1 := Copy(S1, I, MaxInt);
     for I := 1 to Math.Min(Length(S1),Length(S2)) do
         if (S1[I] <> S2[I]) then break;
     result := True;//Copy(S1, 1, I-1);//相同的内容
     end else Result:=False;// := '没找到任何相同的内容';
end;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值