C CJ Unregistered / Unconfirmed GUEST, unregistred user! 2001-03-07 #3 with memo1 do for i:=0 to lines.count - 1 do if lines = '...' then //use your own function here if you want ...
with memo1 do for i:=0 to lines.count - 1 do if lines = '...' then //use your own function here if you want ...
M mikedeakins Unregistered / Unconfirmed GUEST, unregistred user! 2001-03-07 #4 匹配算法有高效的也有一般的。 一般的算法游标每次向后移动一个字,然后进行匹配。 高效算法根据匹配的字符串算出一个跃点,每次不匹配可以向后跳跃跃点个字。