How to scan a user-input sentence/phrase for the individual words
Ältere Kommentare anzeigen
I'm writing a text to speech program in the Malay Language for a project. I have created a GUI with an editbox for the user-input. For starters, how do I scan the user-input sentence for words?
Using these words, I will match them with their corresponding *.wav file from a database of Malay words (Malay is written with English alphabets too)
Akzeptierte Antwort
Weitere Antworten (1)
Chaowei Chen
am 27 Aug. 2011
0 Stimmen
Just a subtle improvement to Jiang's approach. (To get rid of the period symbol)
InputText='This is is my testing speech.';
Words2=regexp(InputText,'\w*','match')
1 Kommentar
Fangjun Jiang
am 27 Aug. 2011
Agree! There are many other things to be taken care of too, like InputText='This''s my testing speech.'.
Kategorien
Mehr zu Simulation, Tuning, and Visualization finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!