Let's assume that the 100th user inputs his name as: Jackson Michael.
I would like my prog to print to the file the reference, which would be combining the first letter of the lastname with all the consonants remaining after removing all vowels (a,e,i,o,u).
in case of Jackson it would be: JCKSN100
any ideas how to accomplish that? as of right know all the inputted names are in an array and each element is a plain string.
Thanks in advance