quote:
Originally posted by waynewilson2
is there any way to check if the array's string contains the string, but is not exactly alike it??
this is close to what i used in WLMini Media Player:
code:
for(x in somearray){
if(somestring.search(somearray[x]) != -1){
Debug.Trace(somearray[x]); // prints the found stuff.
}
}