How can i display the number of letters in a user supplied string?
2 次查看(过去 30 天)
显示 更早的评论
First_name=input('What is your first name? ','s');
User must input their name, and then how can i make matlab display the number of letters in their name?
0 个评论
回答(3 个)
Walter Roberson
2013-4-9
编辑:Walter Roberson
2013-4-9
How do you define "letters" for this purpose? Is space a "letter" ? Is dash a "letter"? If the user answers
Justin Porter the 3rd
then is the "3" a letter, or should your algorithm convert "the 3rd" to "III" ?
In some languages such as Swedish, there are representations as ä which is a true letter (not an accent on a letter) -- and yet it is considered acceptable (if not the best) to write ä as ae if necessary. Is ä one letter or two? If it is one letter and the ae form is encountered, then should it be considered as only one letter even though it takes two characters?
There are some languages in which there is a mix, with some letters that appear to be roman characters with accents (but are considered different characters, like the Swedish ä), and other letters that are roman characters with accents (and not considered distinct letters). How will your code handle those languages?
How many letters are there in
賈斯汀門房
?
2 个评论
Yao Li
2013-4-9
Wow, Chinese!
a='賈斯汀門房'; length(a)
ans =
5
I'm a Chinese. The result 5 is right.
Also,you may use ASCII for selection.
Walter Roberson
2013-4-9
5 is not right. Chinese does not use letters, so the result for the number of letters has to be either 0 (no letters) or the number of letters in the translation to a language that does use letters.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!