How to reference entire substring as a string?

조회 수: 5 (최근 30일)
Ted Baker
Ted Baker 2019년 11월 27일
댓글: Stephen23 2019년 11월 27일
I have an array of strings in a 4x1 cell format, called textarr, as below:
ExA
ExB
ExC
ExD.exe
I would like to remove the .exe, so I initially tried:
textarr(4) = textarr(4)(1:end-4);
But Matlab did not like the double brackets on the right hand side.
I then tried a method using a temporary variable, like:
lasttemp = textarr(4);
lasttemp = lasttemp(1:end-4);
But this just results in lasttemp becoming a 1x0 cell...
I suspect I am confusing the String itself with elements of a string array. How can I address a String inside a specific element of an array?
  댓글 수: 1
Stephen23
Stephen23 2019년 11월 27일
If those strings represent filenames then using indexing is not a robust solution (because file extensions do NOT all have three characters!). The simple, robust, easy MATLAB solution to remove the file extensions is to use fileparts.

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

채택된 답변

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 11월 27일
solution:
textarr={'ExA';
'ExB';
'ExC';
'ExD.exe'}
textarr=strrep(textarr,'.exe','')%remove
  댓글 수: 1
Ted Baker
Ted Baker 2019년 11월 27일
Thank you very much for the fast answer, it works perfectly.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by