Why do strfind and regexp may lead to a different result?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
pietro
el 12 de Jun. de 2017
Comentada: pietro
el 13 de Jun. de 2017
Hi all,
I noticed that regexp and strfind may lead to different results. Here an example:
regexp('Infinitely Variable Transmission (IVT)','Infinitely Variable Transmission (IVT)')
Why does it occur?
Thanks
3 comentarios
Stephen23
el 12 de Jun. de 2017
Editada: Stephen23
el 12 de Jun. de 2017
@pietro: if you are planning on using regular expressions then you really need to understand the different meta-characters, such as parentheses. A good place to learn about regular expressions in MATLAB is to read the MATLAB documentation:
Respuesta aceptada
Adam
el 12 de Jun. de 2017
Editada: Adam
el 12 de Jun. de 2017
regexp( 'Infinitely Variable Transmission (IVT)', 'Infinitely Variable Transmission \(IVT\)' )
works, but you have to escape the parenthesis as they have special meaning in a regexp expression.
if you look in
doc regexp
in the section headed 'Split Text at Delimiter Using split Keyword', there is an example of this for escaping the ^ symbol.
Más respuestas (1)
Walter Roberson
el 12 de Jun. de 2017
In the general case, regexp can return different results if the pattern includes metacharacters.
There is a routine that can be used to "escape" characters so that they are treated literally, but the routine name is not coming to mind at the moment.
1 comentario
Walter Roberson
el 12 de Jun. de 2017
regexptranslate() with the 'escape' option is suitable for this purpose.
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!