Remove first characters from a string

조회 수: 61 (최근 30일)
Melissa Ette
Melissa Ette 2020년 10월 26일
댓글: Stephen23 2020년 10월 26일
I have a celll u(5,1) that looks like :
u{1,1}=''ART1/TEACH''
u{2,1}=''H0ME/SHOW''
I want to remove the first 5 characters from each of these strings so that :
u{1,1}=''TEACH''
u{2,1}=''SHOW''
How can I do it?
  댓글 수: 1
Stephen23
Stephen23 2020년 10월 26일
The duplicated single-quotes are not valid MATLAB syntax:
u{1,1} = ''ART1/TEACH''
u{2,1} = ''H0ME/SHOW''
Do you actually have a cell array of character vectors:
u = {'ART1/TEACH';'H0ME/SHOW'}
or a string array?:
u = ["ART1/TEACH";"H0ME/SHOW"];

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

답변 (2개)

per isakson
per isakson 2020년 10월 26일
편집: per isakson 2020년 10월 26일
... or if I understand "I want to remove the first 5 characters from each of these strings" literally
%%
u{1,1} = "ART1/TEACH";
u{2,1} = "H0ME/SHOW";
%%
for jj = 1 : size(u,1)
u{jj,1} = eraseBetween(u{jj,1},1,5);
end
It's recommended to keep strings in string arrays rather than cell arrays.
%%
u(1,1) = "ART1/TEACH";
u(2,1) = "H0ME/SHOW";
%%
u = eraseBetween( u, 1,5 );
inspect
>> u
u =
2×1 string array
"TEACH"
"SHOW"
And a final alternative
%%
u(1,1) = "ART1/TEACH";
u(2,1) = "H0ME/SHOW";
%%
u = extractAfter( u, "/" );

Cris LaPierre
Cris LaPierre 2020년 10월 26일
Perhaps try using cellfun in combination with extract?
u{1,1}="ART1/TEACH";
u{2,1}="H0ME/SHOW"
u = 2x1 cell array
{["ART1/TEACH"]} {["H0ME/SHOW" ]}
f = @(x) extractAfter(x,5);
a=cellfun(f,u,'UniformOutput',false);
a=vertcat(a{:})
a = 2×1 string array
"TEACH" "SHOW"

카테고리

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

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by