Capitalize strings using titlecase
版本 1.1.0.0 (1.4 KB) 作者:
Brandon Kuczenski
Capitalize the first letter of each word in a string or cell array of strings
This function capitalizes each word in a string, or in a cell array of strings, excepting a user-definable set of short words. The default non-capitalized words are 'a', 'an', 'and', 'or', 'the', and 'in'.
Example:
>> C={'a walk in the park' 'two birds with one stone' 'pay the piper'}';
>> capitalize(C)
ans =
'A Walk in the Park'
'Two Birds With One Stone'
'Pay the Piper'
>> capitalize(C,{'with','THE'})
ans =
'A Walk In the Park'
'Two Birds with One Stone'
'Pay the Piper'
>>
引用格式
Brandon Kuczenski (2026). Capitalize strings using titlecase (https://ww2.mathworks.cn/matlabcentral/fileexchange/43399-capitalize-strings-using-titlecase), MATLAB Central File Exchange. 检索时间: .
MATLAB 版本兼容性
创建方式
R2011b
兼容任何版本
平台兼容性
Windows macOS Linux类别
在 Help Center 和 MATLAB Answers 中查找有关 Characters and Strings 的更多信息
