i have a problem im trying to solve in python but I'm not sure if its possible
ive got lists of data
one line that is the full name Eg. name:John Doe and the line below is a the user ID Eg. userID:jdoe
i have both of those being made into sperate strings
but what i need to do is make the user ID string Mixed case instead of lower.
so instead of jdoe it would be JDoe
copying the case that was user from the full name
the other issue is the user ID can be differnt styles depending on the user so they could be
userID:jdoe
userID:johndoe
userID:jdoe02
userID:johndoe02
thanks