我在 Matlab 中有一个单元格数组,单元格中的所有元素都表示为:

'"something"'

如何创建一个数组
'something'

?

最佳答案

这里有两个解决方案。 strrep 删除所有双引号实例,而 regexprep 只删除字符串开头和结尾的双引号(感谢 Gunther Struyf 指出在某些情况下需要第二个 regexprep 解决方案):

>> A = {'"hello"', '"wor"ld"'}

A =

'"hello"'    '"wor"ld"'

>> B = strrep(A, '"', '')

B =

'hello'    'world'

>> C = regexprep(A, '^"|"$', '')

C =

'hello'    'wor"ld'

关于arrays - 如何摆脱 Matlab 单元格中的双引号?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13282113/

10-11 17:53