Capitalize 1st word of an character array
5 ビュー (過去 30 日間)
古いコメントを表示
Using regexprep how do I convert this '99this' to this '99This'?
0 件のコメント
採用された回答
その他の回答 (1 件)
Sean de Wolski
2022 年 6 月 16 日
編集済み: Sean de Wolski
2022 年 6 月 16 日
s = "99this"
firstletter = letterBoundary("start")+lettersPattern(1)
replace(s, firstletter, upper(extract(s, firstletter)))
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!