I have a cell show like this
% code
val =
title="
google
">
The value is 3*7 char. If I want to convert into string to be ---> title="google"> What can I do? I have found many solution but can't help for this one. Thank you.

 채택된 답변

Guillaume
Guillaume 2015년 1월 7일

0 개 추천

Possibly, this is what you want:
strjoin(cellstr(val), '')

댓글 수: 5

Ara
Ara 2015년 1월 7일
It's error --> Error using strjoin (line 52) First input must be a 1xN cell array of strings.
Is it because my cell has 3x7 char right? how to do it?
Anyway thank you for your answer.
Guillaume
Guillaume 2015년 1월 7일
편집: Guillaume 2015년 1월 7일
It's not clear what the type of val is because of your use of the word cell which has a specific meaning in matlab. Is it a 3x1 cell array or a 3x7 char array (or something else)?
To know for sure, tell us the output of
whos val
Ara
Ara 2015년 1월 7일
It is 3x7 char.
In that case, my code works:
>> val = ['title="'
'google '
'"> '];
>> whos val
Name Size Bytes Class Attributes
val 3x7 42 char
>> strjoin(cellstr(val), '')
ans =
title="google">
Ara
Ara 2015년 1월 7일
Thank you. It's work

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

추가 답변 (1개)

Sean de Wolski
Sean de Wolski 2015년 1월 7일

0 개 추천

S = reshape(A',1,[])
No reason to convert to and from a cell.

댓글 수: 3

Guillaume
Guillaume 2015년 1월 7일
Yes, there is, the extra spaces that cellstr trims. Your solution has an extra space after 'google' and a bunch of them after the closing '>'.
Sean de Wolski
Sean de Wolski 2015년 1월 7일
편집: Sean de Wolski 2015년 1월 7일
Ahh, I didn't realize cellstr implicitly calls deblank. Good to know!
Ara
Ara 2015년 1월 7일
Thank you very much.

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

카테고리

도움말 센터File Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

질문:

Ara
2015년 1월 7일

댓글:

Ara
2015년 1월 7일

Community Treasure Hunt

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

Start Hunting!

Translated by