How to reference entire substring as a string?

5 次查看(过去 30 天)
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
solution:
textarr={'ExA';
'ExB';
'ExC';
'ExD.exe'}
textarr=strrep(textarr,'.exe','')%remove

更多回答(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