How to extract a string before a number?

조회 수: 18 (최근 30일)
Meenal
Meenal 2022년 8월 30일
편집: Stephen23 2023년 3월 20일
Hello everyone, I need to know how to extract a substring from strings given below such that as soon as it encounters a digit, it returns the substring before that.
e.g.
str = 'abcd-xyzw-1.2.3.zip'
str2 = 'abcd_xyzw_2.3.1.zip'
it should then return the substring as
sub_str = 'abcd-xyzw-'
sub_str2 = 'abcd_xyzw_'
How can it be done?
Thanks in advance

채택된 답변

Chunru
Chunru 2022년 8월 30일
str = 'abcd-xyzw-1.2.3.zip';
str2 = 'abcd_xyzw_2.3.1.zip';
idx = regexp(str, '\d');
sub_str = str(1:idx(1)-1)
sub_str = 'abcd-xyzw-'
idx = regexp(str2, '\d');
sub_str2 = str2(1:idx(1)-1)
sub_str2 = 'abcd_xyzw_'

추가 답변 (2개)

Karim
Karim 2022년 8월 30일
You can use the regexp function to find the indexes for the numbers. Then you can split the char array using that index (minus one so that you do not have that first number)
% define the string, note i used a char array as in the OP's question
str = 'abcd-xyzw-1.2.3.zip';
% use the regexp function to obtain the indexes of the numbers
[~,idx] = regexp(str,'(?<!\d)(\d)+(?!\d)','match');
% get the sub string by taking the first characters (minus 1 so that we
% don't copy the first number)
sub_str = str( 1:(idx(1)-1) )
substr = 'abcd-xyzw-'

Stephen23
Stephen23 2022년 8월 30일
편집: Stephen23 2023년 3월 20일
The simple approach using REGEXP, without wasting time fiddling around with indices:
str = 'abcd-xyzw-1.2.3.zip';
sub = regexp(str,'^\D+','match','once')
sub = 'abcd-xyzw-'
This approach also directly works with multiple strings at once (unlike using indexing):
str = {'abcd-xyzw-1.2.3.zip';'abcd_xyzw_2.3.1.zip'};
sub = regexp(str,'^\D+','match','once')
sub = 2×1 cell array
{'abcd-xyzw-'} {'abcd_xyzw_'}

카테고리

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

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by