分享
 
 
 

2个不错的通配符比较函数

王朝delphi·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

近日在和朋友讨论 MaskMatch 时偶得2个不错的算法。

函数1 只支持'*','?'模糊匹配。速度比采用递归算法的快近2倍,比TMask方法快很多。

函数2 完全支持正规表达式。速度于之前的相同。(不会正规表达式的朋友慎用)

// ===========================

// Funtion 1

// ===========================

// Check if the string can match the wildcard. It can be used for unicode strings as well!

// C: 2004-07-24 | M: 2004-07-24

function MaskMatch(const aPattern, aSource: string): Boolean;

var

StringPtr, PatternPtr: PChar;

StringRes, PatternRes: PChar;

begin

Result := False;

StringPtr := PChar(UpperCase(aSource));

PatternPtr := PChar(UpperCase(aPattern));

StringRes := nil;

PatternRes := nil;

repeat

repeat // ohne vorangegangenes "*"

case PatternPtr^ of

#0 : begin

Result := StringPtr^ = #0;

if Result or (StringRes = nil) or (PatternRes = nil) then Exit;

StringPtr := StringRes;

PatternPtr := PatternRes;

Break;

end;

'*': begin

Inc(PatternPtr);

PatternRes := PatternPtr;

Break;

end;

'?': begin

if StringPtr^ = #0 then Exit;

Inc(StringPtr);

Inc(PatternPtr);

end;

else begin

if StringPtr^ = #0 then Exit;

if StringPtr^ <> PatternPtr^ then

begin

if (StringRes = nil) or (PatternRes = nil) then Exit;

StringPtr := StringRes;

PatternPtr := PatternRes;

Break;

end else

begin

Inc(StringPtr);

Inc(PatternPtr);

end;

end;

end;

until False;

repeat // mit vorangegangenem "*"

case PatternPtr^ of

#0 : begin

Result := True;

Exit;

end;

'*': begin

Inc(PatternPtr);

PatternRes := PatternPtr;

end;

'?': begin

if StringPtr^ = #0 then Exit;

Inc(StringPtr);

Inc(PatternPtr);

end;

else begin

repeat

if StringPtr^ = #0 then Exit;

if StringPtr^ = PatternPtr^ then Break;

Inc(StringPtr);

until False;

Inc(StringPtr);

StringRes := StringPtr;

Inc(PatternPtr);

Break;

end;

end;

until False;

until False;

end;

// ===========================

// Funtion 2

// ===========================

function _MatchPattern(aPattern, aSource: PChar): Boolean;

begin

Result := True;

while (True) do

begin

case aPattern[0] of

#0 : begin

//End of pattern reached.

Result := (aSource[0] = #0); //TRUE if end of aSource.

Exit;

end;

'*': begin //Match zero or more occurances of any char.

if (aPattern[1] = #0) then

begin

//Match any number of trailing chars.

Result := True;

Exit;

end else

Inc(aPattern);

while (aSource[0] <> #0) do

begin

//Try to match any substring of aSource.

if (_MatchPattern(aSource, aPattern)) then

begin

Result := True;

Exit;

end;

//Continue testing next char...

Inc(aSource);

end;

end;

'?': begin //Match any one char.

if (aSource[0] = #0) then

begin

Result := False;

Exit;

end;

//Continue testing next char...

Inc(aSource);

Inc(aPattern);

end;

'[': begin //Match given set of chars.

if (aPattern[1] in [#0,'[',']']) then

begin

//Invalid Set - So no match.

Result := False;

Exit;

end;

if (aPattern[1] = '^') then

begin

//Match for exclusion of given set...

Inc(aPattern, 2);

Result := True;

while (aPattern[0] <> ']') do

begin

if (aPattern[1] = '-') then

begin

//Match char exclusion range.

if (aSource[0] >= aPattern[0]) and (aSource[0] <= aPattern[2]) then

begin

//Given char failed set exclusion range.

Result := False;

Break;

end else

Inc(aPattern, 3);

end else

begin

//Match individual char exclusion.

if (aSource[0] = aPattern[0]) then

begin

//Given char failed set element exclusion.

Result := False;

Break;

end else

Inc(aPattern);

end;

end;

end else

begin

//Match for inclusion of given set...

Inc(aPattern);

Result := False;

while (aPattern[0] <> ']') do

begin

if (aPattern[1] = '-') then

begin

//Match char inclusion range.

if (aSource[0] >= aPattern[0]) and (aSource[0] <= aPattern[2]) then

begin

//Given char matched set range inclusion.

// Continue testing...

Result := True;

Break;

end else

Inc(aPattern, 3);

end else

begin

//Match individual char inclusion.

if (aSource[0] = aPattern[0]) then

begin

//Given char matched set element inclusion.

// Continue testing...

Result := True;

Break;

end else

Inc(aPattern);

end;

end;

end;

if (Result) then

begin

//Match was found. Continue further.

Inc(aSource);

//Position Pattern to char after "]"

while (aPattern[0] <> ']') and (aPattern[0] <> #0) do Inc(aPattern);

if (aPattern[0] = #0) then

begin

//Invalid Pattern - missing "]"

Result := False;

Exit;

end else

Inc(aPattern);

end else

Exit;

end;

else begin //Match given single char.

if (aSource[0] <> aPattern[0]) then

begin

Result := False;

Break;

end;

//Continue testing next char...

Inc(aSource);

Inc(aPattern);

end;

end;

end;

end;

function MatchPattern(const aPattern, aSource: string): Boolean;

begin

Result := _MatchPattern(PChar(aPattern), PChar(aSource));

end;

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有