Removing quotation marks in a string using for loop

조회 수: 4 (최근 30일)
Chris Dan
Chris Dan 2022년 7월 7일
댓글: Les Beckham 2022년 7월 7일
Hi,
I have a short question, I am creating a string with a loop but I cannot remove the quotation marks " ".
here is my code
folder_name_dia = linspace(0.05,5,100); % used to create an automatic string
for p=1:length(folder_name_dia)
test{p} = "diam_" +folder_name_dia(p);
end
test = test';
Does any know how can i remove the quotation marrks " "

채택된 답변

Les Beckham
Les Beckham 2022년 7월 7일
편집: Les Beckham 2022년 7월 7일
The quotation marks are not actually part of the string. It is just displayed that way. Plus, since you are using strings instead of character vectors, you don't need to put them in a cell array. You can use a string array (with regular parentheses instead of curly braces):
folder_name_dia = linspace(0.05,5,100); % used to create an automatic string
for p = 1:length(folder_name_dia)
test(p) = "diam_" + folder_name_dia(p);
end
test = test';
test(1) % this shows the quotation marks to give you an indication that this is a string
ans = "diam_0.05"
disp(test(1)) % this just shows the string itself which doesn't actually have any quotation marks
diam_0.05
  댓글 수: 2
Chris Dan
Chris Dan 2022년 7월 7일
I understood :-) Thank you so much
Les Beckham
Les Beckham 2022년 7월 7일
You are quite welcome.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by