Info
此问题已关闭。 请重新打开它进行编辑或回答。
please suggest me the MATLAB expression to count the no of literals in a string
1 次查看(过去 30 天)
显示 更早的评论
e.g. I am having a string t6Pt4P2t3
then no of chars in it are 10. So I want a code which take utt6Pt4P2t3 as input and output me the 10(no of chrs) as output.
0 个评论
回答(1 个)
Mahdiyar
2015-4-6
Hi Jain
The number of character in tis string (utt6Pt4P2t3) is 11 :) .You can use the following command.
String = 'utt6Pt4P2t3'
No_Char = length(String)
Regards,
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!