雖然可行,但不夠完整,一遇見 *.* 或 *htm* 便不行了,有無完整的方案,
就像使用 FindFirst 一樣,可使用 *.* ab?de.*
等格式。
function TForm1.XXX(s1,s2:string):Boolean;
var
i:integer;
s:string;
begin
s1:=copy(s1,pos('*',S1)+1,length(S1));
i:=pos(s1,s2);
if i=length(S2)-3 then Result:=true
else Result:=False;
end;