Condense code in Split string operation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sanju Das
el 13 de Sept. de 2022
I have a excel file with the name 'xxx_yyy_zzz.xlsx'
Here, I want to extract only the part 'zzz' and for that I am using the following code
name = 'xxx_yyy_zzz.xlsx';
dummy1 = split('xxx_yyy_zzz.xlsx', '.');
dummy2 = split(dummy1{1}, '_');
final = dummy2{end};
My question is -- is it posible to condense these four lines into a single line of code?
Thanks
SD
0 comentarios
Respuesta aceptada
Stephen23
el 13 de Sept. de 2022
s = "xxx_yyy_zzz.xlsx";
regexp(s,'[^_.]+(?=\.)','match','once')
1 comentario
Más respuestas (1)
Les Beckham
el 13 de Sept. de 2022
If you put the filename in a string instead of a char vector you can do it in one line
s = "xxx_yyy_zzz.xlsx"
extractBetween(s, '_', '_')
If it is a char vector it will take two lines
s = 'xxx_yyy_zzz.xlsx'
s1 = extractBetween(s, '_', '_')
s2 = s1{:}
0 comentarios
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!