String Manipulation

177 ビュー (過去 30 日間)
Mohamed Yaseen
Mohamed Yaseen 2011 年 1 月 25 日
コメント済み: Jérôme 2022 年 8 月 18 日
Hi All,
For example, I have filename called abcdefhijklm.xlsx and this file is displayed on the GUI. I wanted to remove the extension in the file name 'xlsx' and display only 'abcdefhijklm'. How can i manipulate this string.
Thanks in Advance Yaseen.

採用された回答

Andreas Goser
Andreas Goser 2011 年 1 月 25 日
I see two approaches. As you have a filename, you can have MATLAB take care of this by using the FILEPARTS command:
[pathstr, name, ext] = fileparts('abcdefhijklm.xlsx')
There is a generic approach for string search and string manipulation using commands like REGEXP, STRFIND and many others. Here, you would need to define the search logic yourself like "find all dots in the character array, identify the last dot and return all characters before that dot".
  3 件のコメント
Qi Hao Goh
Qi Hao Goh 2011 年 5 月 12 日
sorry to interrupt, if we were to use regexp to find the dot in the filename, how do we do that?
Walter Roberson
Walter Roberson 2011 年 5 月 12 日
Please start a new Question for this topic.

サインインしてコメントする。

その他の回答 (1 件)

Jérôme
Jérôme 2022 年 8 月 18 日
Since R2016b, you can also use extractBefore.
filename_with_extension = "abcdefhijklm.xlsx";
filename_without_extension = extractBefore(filename_with_extension, ".")
filename_without_extension = "abcdefhijklm"
  2 件のコメント
Rik
Rik 2022 年 8 月 18 日
This is risky advice. The fileparts function is designed to separate the path, file name, and extension. I don't know what edge cases there are, but let me try the first one that comes to mind:
filename_with_extension = "filename_with_a.dot_in_it.xlsx";
filename_without_extension = extractBefore(filename_with_extension, ".")
filename_without_extension = "filename_with_a"
Exceptions like this is why it is safer to stick to functions that have been debugged for two decades by Mathworks.
Jérôme
Jérôme 2022 年 8 月 18 日
I totally agree with you, to be sure of the result regardless of the filename content, fileparts is the way to go.
I just wanted to mention this option if we know the filename content won't cause any issue, and because we can use directly the filename without extension, which in some cases can save us an intermediate line of code (I am not saying this is the thing to do, I just wanted to mention that this possibility exists).
filename_with_extension = "abcdefhijklm.xlsx";
% Display filename in one line
disp(extractBefore(filename_with_extension, "."))
abcdefhijklm
% Display filename in two lines
[pathstr, name, ext] = fileparts(filename_with_extension);
disp(name)
abcdefhijklm

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by