如何从整个 table 中删除 "?

How to remove " from the whole table?

让我们得到一个简单的 table,它有 2 列 AB。 table 的值如下所示:

"ABCD" "123"
"EFGH" "456"
"IJKL" "789"

这里我需要删除所有 "",所以我只会得到 "" 之间的值。是 table 中的某个 属性,它把字符串赋给 "" 吗?我无法删除它们。 table 中的字符串是否有不同的处理方法?

您正在使用字符串数组来生成 table,因此 "s.
使用 categorical 在 table.

中删除它们

一个例子:

%Assuming you have the data in the form of a string array, so creating a string array
S= string({'ABCD' '123';'EFGH' '456'; 'IJKL' '789'})

%S = 
%
%  3×2 string array
%
%    "ABCD"    "123"
%    "EFGH"    "456"
%    "IJKL"    "789"

T = table(categorical(S(:,1)),categorical(S(:,2)))

%T =
%
%  3×2 table
%
%    Var1    Var2
%    ____    ____
%
%    ABCD    123 
%    EFGH    456 
%    IJKL    789