Sorry for the crappy title but i honestly have no clue on how i would shortly word this problem.
*Editing accidentally posted ;P
So basically i have a string which is inputted which in this case is:
69,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,#,
Now the code which is processing this is:
The line which is inputted is 36 'inputs' long which excludes the commas since they are being split.
However at the end of the process i am left with only 32, as shown here.
Also if any of this code looks 'scrubby' or not efficient is because I'm fairly new to programming and thought i would try do this without any external references haha not a good idea when you're tired! xD
69######## ######### ######### ######
It's probably a really simple fix that i just can't see due to sleep deprivation, Hahah thanks in advance
--- Update ---
Nevermind i fixed it by just adding a 'key?' to the string at the end of the splits which allowed me to get this result
69,#,#,#,#,#,#,#,
#,#,#,#,#,#,#,#,
#,#,#,#,#,#,#,#,
#,#,#,#,#,#,#,#,
Surprisingly a lot cleaner than my previous code hahah