I have a list:
[['EWR', 2, 3], ['Queens', 0, 5], ['Brooklyn', 1, 1] ]
How would I extract the 0 if I have the string Queens in a var?
In other words how would i express: I want the first int in the list that starts with the word Queens.
EDIT: Queens (and strings in general) is always in first position. The list structure can't change