convert lower case to upper and upper to lower

조회 수: 16 (최근 30일)
Lauren Kinchla
Lauren Kinchla 2019년 11월 21일
답변: Stephen23 2022년 5월 23일
I need help writing a code to flip the case of the characters so that lower case are converted to upper case and upper case characters are converted to lower case and any number values remains unchanged
  댓글 수: 1
Star Strider
Star Strider 2019년 11월 21일
There are MATLAB functions to do exactly that! This seems to be homework, so I will defer to you to explore the documentation.

댓글을 달려면 로그인하십시오.

답변 (2개)

Stephen23
Stephen23 2022년 5월 23일
str = '123 Hello World!';
str = regexprep(str,'[A-Za-z]+','${char(mod($&-97,64)+65)}')
str = '123 hELLO wORLD!'

Jan
Jan 2019년 11월 21일
편집: Jan 2019년 11월 21일
You can use the function isstrprop with the category 'lower' and 'upper' to identify the specific characters. Then use the commands upper and lower to change the case.
An alternative is to use a comparison:
str = 'aSd12Bqm'
low = (str >= 'a' & str <= 'z')
high = (str >= 'A' & str <= 'Z')
Now upper and lower can be useful again. But you can try it with calculations of the ASCII code also:
str = 'a'
str2 = str + ('A' - 'a')
char(str2)
A smart trick is to flip the 5th bit of the ASCII representation, if the character is a letter:
str = 'Aa'
char(bitxor(double(str), 32))
% 'aA'
% Coversion to DOUBLE is needed, because BITXOR cannot operate on CHARs
You have to use a mask to affect the letters only. See the creation of low and high above, which can be combined.
See:
doc char
doc isstrprop
doc lower

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by