I have a two dimensional array with over 13,000 words, and a value associated with each one. I am successfully iterating through this array to find a particular word, but I want to then display the VALUE.
For example, my array looks something like this:
apple, 10
orange, 15
pear, 25
When I find the word "orange" I want to be able to display the number 15.
My code looks like this:
array_all_words -> For each x element
[ul]
[li]array_all_words Current Value = "orange" -> my_text = ????[/code:3mnrcmls][/li]
[/ul]
I've tried different variations of: my_text = array_all_words.at(CurValue,1) but nothing is working so far.
Any suggestions?