在 Octave 中,我想将字符串转换为字符串矩阵。假设我有一个字符串:
s = "one two three one one four five two three five four"
我想将其拆分为一个矩阵,使其看起来像:
one
two
three
four
five
删除了重复项。
这段代码:
words = strsplit(s, ",") %Split the string s using the delimiter ',' and return a cell string array of substrings
只需创建一个words
与 完全相同的矩阵s
。
如何将我的字符串转换为唯一单词的矩阵?