String Copying without Spaces

조회 수: 12 (최근 30일)
Ash
Ash 2012년 5월 14일
i have a string a= [a b c d] separated by two spaces n i want to copy it in another string like b=[abcd] by removing the spaces. Please help.

채택된 답변

Andrei Bobrov
Andrei Bobrov 2012년 5월 14일
a = 'a b c d'
b = regexprep(a,' ','')
or
b = setdiff(a,' ')
or
b = f(~ismember(a,' '))
or
b = strrep(a,' ','')
  댓글 수: 2
Ash
Ash 2012년 5월 14일
Thanks alot for ur help...It worked..
Jan
Jan 2012년 5월 14일
Or:
b = a(~isspace(a));
b = a(a ~= ' ');
b = a; b(strfind(b, ' ')) = [];
I assume, that the STRREP method is the fastest.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by