I have ten arrays with empty value
onTable[0 to 10];
look
["Jean5", "Jean3", "Paul2", "Jean6", "", "Paul4", "Jean", "peirre4", ""]
["Paul5", "peirre6", "peirre3", "", "Jean4", "Paul", "peirre5", "Jean2", ""]
...
I want get length of each array without empty value and without create ten variables for check that.
I have test this solution
count empty values in array but i dont want make ten variable. ie: count1, count2,...
.
I check too compare two arrays based on length: skip empty values but is not what i want.
If possible, I want this look like
onTable[0].length(exclude(""))
What is the good way for make that?