Registriert seit: 26. Mai 2004
3.159 Beiträge
|
Re: TPerlRegex sehr langsam
18. Mär 2010, 14:57
Hallo,
geh mal auf Nummer sicher und teste die Geschwindigkeit wie folgt:
Delphi-Quellcode:
var
blub : Int64;
begin
{... }
blub := GetTickCount();
Result := Match;
if Result then
repeat
//sl.Add(MatchedExpression);
until not MatchAgain;
blub := GetTickCount() - blub;
ShowMessage(IntToStr(blub) + ' Millisekunden);
Ansonsten kannst auch mal die Lib testen: http://www.regular-expressions.info/delphi.html
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|