I’m making a dating sim for class, and one of the features I want to add is customizable pronouns (think like DialTown). I’m having the player input their pronouns and making several cases for each one. I have when the characters are all lowercase and all uppercase, but I can’t figure out how to capitalize just the first letter (such as when a pronoun is used at the beginning of the sentence).
1 Like
Hey @Apricotbuncakes! Welcome to the forums!
See if this will work for you! You have to separate the pieces and capitalize them individually with this method but it’s really fast. You could just make it into a function that takes a string in and spits out the result.
I know there are easier ways in other coding languages but this works as far as I can tell!
Edit: Everynone’s solution below does the same thing with fewer nodes.
2 Likes
Thank you so much! I’ve been trying to figure this out for weeks!
2 Likes