I want to detect syllables in a user-inputted word. Not how many syllables there are, but actually finding the letters that make up each syllable.
I've tried things like getting all the combinations of letters that make up syllables, (VCV, CVV, etc.) and then detecting if the word contains those letters in that pattern, but that doesn't work.