MATLAB: How to convert strings in cell array into array

cell arrays

I am not able to convert strings in cell array into array

Best Answer

strcat() has the property that it trims out leading and trailing blanks from parameters that are character vectors. It does not do that for cell array of character vectors.
For more details you can visit documentation of strcat here