怎么将matlab 字符串中首字母变大写?
发布网友
发布时间:2023-10-02 16:00
我来回答
共1个回答
热心网友
时间:2024-12-04 08:03
使用upper函数可以将小写变成大写,使用lower函数可以将大写变成小写
A='student'
A =
studentB=[upper(A(1)) A(2:end)]
B =
Student
对于好几个单词的情况,例如
A='model including effects of precombustioin'
b=[0 find(A==' ')]
A(b+1)=upper(A(b+1))
祝你学习愉快!