MATLAB: How to replace a string with another string in a Matlab table

MATLAB

Hi,
I have a table that has 'N/A' in some of the column cells. I want to replace 'N/A' by ''. Would anyone tell me how to do that?
Thanks,
Jennifer

Best Answer

Example:
t.Var1(strcmp(t.Var1,'N/A')) = {''};