How to get rid of two consecutive double quotes from my string?

5 次查看(过去 30 天)
I have pasted some data from R into one of my Matlab variable. Here, I have a string enclosed with two double quotes e.g ""0110001010001001001011"". Due to these two quotes the length of the string is showing as 1. My objective is to place each bit of the string as an array element. And then convert it into numeric. Directly applying str2num on the exaple gives the result as 1.1000e+20 which does not serve my purpose.

回答(1 个)

Mohammad Sami
Mohammad Sami 2020-9-11
if true
% remove double quotes
somestr = regexprep(somestr,'"','');
Numarray = char(somestr) - '0';
end
  1 个评论
Surama Biswas
Surama Biswas 2020-9-11
Deletion of double quotes does not solve the original problem. I delted double quotes using
newStr = strip(str, 'both', '"');
But still the length of newStr is 1 and I can't seperate individual bits out of that. Please help me place each bit as an array element.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by