String
% Create String
s = 'Hello'

% Concatenate Strings
s2 = strcat(s, ' World!')
s3 = ['Hello' ' ' 'World!']

% Multiple Strings
s4 = ['temp1'; 'temp2'] %strings must have exactly same length
s5 = char('temp1', 'temp2')

% Cell
s6 = cellstr(s5)
s6{1} %access the first element
strjoin(s6)%join strings in cell arry into single string
			
Reference