With arrays there just seems to be 'for each element' as a way of searching through.
It seems inefficient and awkward that if I had an array with 100 value and I just want to search from 12 to 18, I have to set it to go through the whole thing and set up some way of counting when I'm actually inside the range I want.
If I wanted to search from position 12 (or whatever number inside the array size) through a bunch of strings in the array until I find "<NP>", is there another way to do this apart from 'for each element'? It's for showing the instructions of the game, with <NP> signifying the end of one page of text.