How to use the Among method with a string array
    Adam D. Ruppe via Digitalmars-d-learn 
    digitalmars-d-learn at puremagic.com
       
    Sat Sep 16 12:09:28 UTC 2017
    
    
  
On Saturday, 16 September 2017 at 11:18:45 UTC, Andrew Chapman 
wrote:
> string[] fruit = ["apple", "pear", "strawberry"];
>
> How do I use "among" to see if "apple" is present.  E.g.  I 
> want to do this:
>
> if ("apple".among(fruit))
among doesn't take an array, but rather a list of arguments:
"bar".among("foo", "bar", "baz")
For searching in an array, you can use canFind:
if(fruit.canFind("apple"))
    
    
More information about the Digitalmars-d-learn
mailing list