convert char array to string

21 次查看(过去 30 天)
between 2019b ans 2021b, function "fileparts" returned String instead of char, this caused many change in my code. iIs there away to obtain the legacy behavior in 2021b ?
thank

采纳的回答

Cris LaPierre
Cris LaPierre 2022-6-20
编辑:Cris LaPierre 2022-6-20
The function fileparts creates output with the same data type as the input.
% String input = string output
fileS = "H:/user4/matlab/myfile.txt";
[filepath,name,ext] = fileparts(fileS)
filepath = "H:/user4/matlab"
name = "myfile"
ext = ".txt"
% Char array input = char array output
fileC = 'H:/user4/matlab/myfile.txt';
[filepath,name,ext] = fileparts(fileC)
filepath = 'H:/user4/matlab'
name = 'myfile'
ext = '.txt'
Check what you are using for input. You could use the convertStringsToChars function to convert your input to fileparts to char if necessary.
[filepath,name,ext] = fileparts(convertStringsToChars(fileS))
filepath = 'H:/user4/matlab'
name = 'myfile'
ext = '.txt'
Or simply char(string), as Fangjun showed
[filepath,name,ext] = fileparts(char(fileS))
filepath = 'H:/user4/matlab'
name = 'myfile'
ext = '.txt'
  1 个评论
Antoine Masia
Antoine Masia 2022-6-20
Thank you,
you are right, this is my input that have changed from "char" to "String".

请先登录,再进行评论。

更多回答(1 个)

Fangjun Jiang
Fangjun Jiang 2022-6-20
char(fileparts(...))?

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by