How to scan a user-input sentence/phrase for the individual words
1 次查看(过去 30 天)
显示 更早的评论
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)
0 个评论
采纳的回答
Fangjun Jiang
2011-8-27
A rudimentary way as a starter
InputText='This is is my testing speech.';
Words=textscan(InputText,'%s');
Words{:}
2 个评论
Fangjun Jiang
2011-8-27
The last line just shows you the result in Command Window, in case you are not familiar with the cell array referencing (using {} instead of ()). The first word will be in Words{1}, second words in Words{2}, etc.
更多回答(1 个)
Chaowei Chen
2011-8-27
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 个评论
Fangjun Jiang
2011-8-27
Agree! There are many other things to be taken care of too, like InputText='This''s my testing speech.'.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Signal Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!