Finding specfic string within another string

I am having trouble finding a specific part of a file path. The path is something along: \\blabla\blabla\blabla\blabla\blabla\blabla\04 - Black\05 - TEST
I need to find "04 - Black" in the path name. The name is changing and so is its position in the path - Therefor I need to find the first instance of 'XX - '. Afterwards I need to find the "05 - TEST" folder, which is also changing name and position.
Can anyone help?

Antworten (5)

KSSV
KSSV am 18 Sep. 2017
Bearbeitet: KSSV am 18 Sep. 2017

0 Stimmen

str1 = '\\blabla\blabla\blabla\blabla\blabla\blabla\04 - Black\05 - TEST';
str2 = '04 - Black' ;
idx = strfind(str1,str2)
str1(idx:(idx+length(str2)-1))
José-Luis
José-Luis am 18 Sep. 2017

0 Stimmen

yourStr = '\blabla\blabla\blabla\blabla\blabla\blabla\04 - Black\05 - TEST'
re = '\\[0-9]{2}\s-\s[a-zA-Z]+';
result = regexp(yourStr,re,'match');

1 Kommentar

Other possible regex, which is more permissive:
re = '\\[0-9]{2}\s-\s[^\\]+';
Allows anything that is not \ after the two digits, whitespaces, and dash.

Melden Sie sich an, um zu kommentieren.

Guillaume
Guillaume am 18 Sep. 2017

0 Stimmen

if the aim is to obtain the name of the folder after the 'XX - ', then:
folder = regexp(path, '(?<=\\[0-9]{2}\s-\s[^\\]+\\)[^\\]+', 'match', 'once')
Cedric
Cedric am 18 Sep. 2017

0 Stimmen

Why not simply
>> str = '\\blabla\blabla\blabla\blabla\blabla\blabla\04 - Black\05 - TEST' ;
>> folders = regexp( str, '\d\d - [^\\]+', 'match' )
folders =
1×2 cell array
'04 - Black' '05 - TEST'

5 Kommentare

Cedric
Cedric am 18 Sep. 2017
Note that to make it portable, you should build the pattern based on filesep.
Stephen23
Stephen23 am 27 Sep. 2017
Or just use a forward-slash, which works on Windows and Linux.
Cedric
Cedric am 27 Sep. 2017
Not in this direction ;-)
If he gets the path from PWD, DIR, FULLFILE, etc on a Windows machine, it will have backslashes.
Image Analyst
Image Analyst am 8 Okt. 2017
Those functions may return backslashes, but you can use forward slashes in your strings that you make up and send into functions like that with no problems. Like Stephen says, Windows accepts either forward or backward slashes equally well.
Cedric
Cedric am 8 Okt. 2017
Bearbeitet: Cedric am 8 Okt. 2017
Yes but we need to match a sub-string in this context and for this he needs to use the correct separator in the pattern, for REGEXP to work. He could use both for ending the match by defining the pattern as '\d\d - [^\\/]+'.
But again, if there is no problem in the "other direction" (because MATLAB can deal with either filesep), here both possibilities have to be managed, either by building the pattern using filesep or by making the pattern flexible enough.

Melden Sie sich an, um zu kommentieren.

Lucas Silva
Lucas Silva am 26 Nov. 2018

0 Stimmen

Eu tenho que fazer um processo semelhante, mas o método de separar as seqüências de caracteres é o ';' Eu tentei identificar o; como se fosse parte do comando, mas o matlab não aceita como.
Existe alguma maneira de obter essa informação?

Kategorien

Gefragt:

am 18 Sep. 2017

Beantwortet:

am 26 Nov. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by