Hello,
I wonder if I could get an index number on a 2D array I am working with.
The array is asymmetrical, and I would like to enumerate how many items there are (not nulls)
I'm bringing in a text file with comma separated strings, the 2D Array is from a list like this;
fact, more fact, some more facts
text, more text, yet more text, too much text
bits, more bits
Would I use a nested for loop and count them somehow?
1