Alright so lets say I need to find a certain string in an array that has many different strings. how would i do a search of that array for a certain string? also, it needs to tell me which array it is in.
Create a for loop to cycle through all of your array elements, you need to test each element for the desired string the way you do that will depend on the type of variable used to represent the string.