How are your logs correct? For 'aeiouAEIOU', expected answer is 0. Do your logs show 0?
'aeiouAEIOU'
You need to use some method, check out how to use regular expressions first.
Perhaps I could compare lname[0] and fname[0] to ASCII values?
Yes, that would work too.
You can't compare a strings against a regular expression like that.
Loading collection data...
How are your logs correct? For
'aeiouAEIOU'
, expected answer is 0. Do your logs show 0?You need to use some method, check out how to use regular expressions first.
Yes, that would work too.
You can't compare a strings against a regular expression like that.