Convert Character Vector to Uppercase upper('Hello, World.') ans = 'HELLO, WORLD.' Convert String Array to Uppercase Convert a string array to contain uppercase characters. str = ["The SOONER,";"the BETTER."] str =2x1 string"The SOONER," "the BETTER." ...
Convert Character Vector to Uppercase upper('Hello, World.') ans = 'HELLO, WORLD.' Convert a string array to contain uppercase characters. str = ["The SOONER,";"the BETTER."] str =2x1 string"The SOONER," "the BETTER." newStr = upper(str) ...