I have a string array filled with smaller string arrays that I've split in to sets of three. It looks like this (except many more):
conv = ('http-get:*:audio/xxx', ':', 'YYY.ORG_XXXXXXXXXX;YYY.ORG_FLAGS=97570000000000000000000000000'), ('http-get:*:video/xxx', ':', 'YYY.ORG_PN=XXXXXXXXXXX;YYY.ORG_FLAGS=ED100000000000000000000000')
The only part of these arrays that I actually want is the third item in the list. How would I go about printing the third item only? My problem is that this is an array inside of an array.