Best way to find if a string is in a list (without generics) - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T20:24:46Zhttp://stackoverflow.com/feeds/question/246623http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/246623/best-way-to-find-if-a-string-is-in-a-list-without-generics9Best way to find if a string is in a list (without generics)Fabio Gomes2008-10-29T12:37:47Z2008-10-31T23:26:55Z
<p>I want do something like this:</p>
<pre><code>Result = 'MyString' in [string1, string2, string3, string4];
</code></pre>
<p>This can't be used with strings and I don't want to do something like this:</p>
<pre><code>Result = (('MyString' = string1) or ('MyString' = string2));
</code></pre>
<p>Also I think that creating a StringList to do just this is too complex.</p>
<p>Is there some other way to achieve this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/246623/best-way-to-find-if-a-string-is-in-a-list-without-generics/246660#2466602Answer by Burkhard for Best way to find if a string is in a list (without generics)Burkhard2008-10-29T12:49:22Z2008-10-29T13:02:38Z<p>Here is a function that does the job:</p>
<pre><code>function StringInArray(Value: string; Strings: array of string): Boolean;
var I: Integer;
begin
Result := False;
for I := Low(Strings) to High(Strings) do
Result := Result or (Value = Strings[I]);
end;
</code></pre>
<p>In fact, you do compare MyString with each string in Strings. As soon as you find one matching you can exit the for loop.</p>
http://stackoverflow.com/questions/246623/best-way-to-find-if-a-string-is-in-a-list-without-generics/246730#2467303Answer by gabr for Best way to find if a string is in a list (without generics)gabr2008-10-29T13:10:35Z2008-10-31T23:26:55Z<p>The code by Burkhard works, but iterates needlessly over the list even if a match is found.</p>
<p>Better approach:</p>
<pre><code>function StringInArray(const Value: string; Strings: array of string): Boolean;
var I: Integer;
begin
Result := True;
for I := Low(Strings) to High(Strings) do
if Strings[i] = Value then Exit;
Result := False;
end;
</code></pre>
http://stackoverflow.com/questions/246623/best-way-to-find-if-a-string-is-in-a-list-without-generics/246753#24675312Answer by Re0sless for Best way to find if a string is in a list (without generics)Re0sless2008-10-29T13:15:48Z2008-10-29T14:20:44Z<p>You could use AnsiIndexText(const AnsiString AText, const array of string AValues):integer or MatchStr(const AText: string; const AValues: array of string): Boolean;</p>
<p>Something like</p>
<pre><code>Result := (AnsiIndexText('Hi',['Hello','Hi','Foo','Bar']) > -1);
</code></pre>
<p>or</p>
<pre><code>Result := MatchStr('Hi', ['foo', 'Bar']);
</code></pre>
<blockquote>
<p>AnsiIndexText returns the 0-offset
index of the first string it finds in
AValues that matches AText
<strong>case-insensitively</strong>. If the string
specified by AText does not have a
(possibly case-insensitive) match in
AValues, AnsiIndexText returns –1.
Comparisons are based on the current
system locale.</p>
<p>MatchStr determines if any of the
strings in the array AValues match the
string specified by AText using a <strong>case
sensitive comparison</strong>. It returns true
if at least one of the strings in the
array match, or false if none of the
strings match.</p>
</blockquote>
<p>Note AnsiIndexText has case-insensitively and MatchStr is case sensitive so i guess it depends on your use</p>
http://stackoverflow.com/questions/246623/best-way-to-find-if-a-string-is-in-a-list-without-generics/248358#2483580Answer by skamradt for Best way to find if a string is in a list (without generics)skamradt2008-10-29T20:48:01Z2008-10-29T20:48:01Z<p>Another possibility would be to concatenate all the strings into one string with a delimiter of some sort and use the pos command to see if its present. Useful if you don't know ahead of time the strings that you will be checking on as you can build the matchstr easily in code.</p>
<pre><code>function DoesThisMatch(This:String):boolean;
var
MatchStrs : String = 'ONE#TWO#THREE#FOUR#'; // note extra delimiter at the end
begin
Result := POS(uppercase(This)+'#',MatchStrs) > 0;
end;
</code></pre>