vote up 0 vote down star

Hello,

I have to compare a partial string "SKILL_______EU_______WAND_______CLERIC_______BASE_____01" with "SKILL".It's meant to check if the first four characters are "SKILL".or the first character only,optimization is needed here!

My problems:

  1. I don't know how to do an optimized comparison.
  2. It has to be repeated 35 000 times so it must be something very fast.

Thanks!

flag

3  
How can the first 4 characters be 'SKILL'?! – jason Aug 15 at 14:37
Are you trying to peraphrase my question? – John Aug 15 at 14:53
1  
Lol! No, I am not trying to paraphrase you question. I am simply pointing out that the first four characters of this string will never, ever be 'SKILL'. – jason Aug 15 at 15:12
I think jason wants you to re-count the number of chars in SKILL. Just make up an excuse involving 0-origin. – Henk Holterman Aug 15 at 15:16

8 Answers

vote up 8 vote down check

Use StrUtils.AnsiStartsStr for case-sensitive, StrUtils.AnsiStartsText for case-insensitive (add StrUtils to your uses clause)

link|flag
vote up 1 vote down

No matter which solution you choose please keep in mind to actually test and benchmark it against your current implementation.

Otherwise you are just guessing, not optimizing.

And be aware that premature optimization is the root of all evil.

Good luck!

link|flag
vote up 0 vote down

If you just what to check the first 4/5 characters you could do

i:= Length('SKILL');

LeftStr('SKILL_______EU_______WAND_______CLERIC_______BASE_____01',i) = 'SKILL'
link|flag
vote up 0 vote down

Why not do:

function StartsWith( const AMatchStr, ATestStr : string ) : boolean;
begin
  Result := SameText( AMatchStr, copy( ATestStr, 1, Length( AMatchStr ));
end;

This will not process any part of ATestStr beyond your starting text. Bri

link|flag
But it will copy chars, not strictly necessary. – Henk Holterman Aug 15 at 15:34
1  
Why not do that? Because the library already comes with such a function, and even if it didn't, it would be better to use StrLComp than to make a temporary copy of the string. – Rob Kennedy Aug 16 at 5:21
vote up 1 vote down

In case you want to check just the 1st character, you can do it like this:

if 'S' = 'SKILL_______EU_______WAND_______CLERIC_______BASE_____01'[1] then
begin
    showmessage('SKILL');
end
link|flag
Does that even compile? – Rob Kennedy Aug 16 at 5:23
of course it compiles. I didn't tested in Delphi 2009, though. I'm sure it'll compile on all Delphi versions. – Nick D Aug 16 at 6:25
I didn't think it was legal to apply the bracket operator to a string literal. But if you say it compiles, I'll take your word for it. Note that Free Pascal doesn't accept that syntax (even in "Delphi mode"). – Rob Kennedy Aug 17 at 3:00
vote up 0 vote down

I don't know much about Delphi, but I think (in any language / framework / platform) Regex is the fastest way for string scanning ...

You didn't exactly specify all the conditions you are searching for...

link|flag
Regex are very complete, but they are not reputed to be fast at all. You should use regex for complex searches not trivial ones, especially not if speed is of the essence. – Lepidosteus Aug 15 at 14:59
1  
"not reputed to be fast at all" - do you have a link for that? Most reg-ex are matched in O(n) and very hard to beat with handwritten code. – Henk Holterman Aug 15 at 15:19
2  
@Henk Holterman: sorry I should have been more specific; fast in case such as the one in this question. If all you want is to check the first 4-5 characters of a string to see if it matches something, you better use functions which are specifically designed and optimized for this. – Lepidosteus Aug 15 at 15:26
That's why I said that he didn't specify all the conditions! – Sapphire Aug 15 at 16:12
vote up 2 vote down

I think the Delphi routines are quite optimized and fast, so just use them.

var
  position : Integer;

begin
  // AnsiPos
  //   returns the position of a substring in a string
  //   or 0 if the substring isn't found
  position := AnsiPos('SKILL', 'SKILL_______EU_______WAND_______CLERIC_______BASE_____01');
end;
link|flag
2  
This will keep on scanning the entire domainstring, even if the 1st chars are unequal. – Henk Holterman Aug 15 at 15:41
vote up 3 vote down

35000 repetitions really isn't that much these days, it probably doesn't matter what you do.

link|flag
1  
Sensible remark, I don't get the downvotes. – Henk Holterman Aug 15 at 15:20
It is a sensible thought. Do it in the most foolproof way, no matter how slow, then store the results and never do it again. – quillbreaker Aug 15 at 15:58
Sensible as it may be, it doesn't actually answer the question, whatever the question really is. So I could certainly understand this being voted down. – Rob Kennedy Aug 16 at 5:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.