Borrar filtros
Borrar filtros

finding a string with parentheses using regexp

15 visualizaciones (últimos 30 días)
wesso Dadoyan
wesso Dadoyan el 22 de Jun. de 2016
Editada: Stephen23 el 23 de Jun. de 2016
A={'5123(P)';'5123 ESP'} how can i search A to find the cell that has the '(P)' string?
find(~cellfun(@isempty,regexp(A,'(P)')));
is giving 1 & 2 as answer which is not correct since it should be 1 only

Respuesta aceptada

Stephen23
Stephen23 el 22 de Jun. de 2016
Editada: Stephen23 el 23 de Jun. de 2016
find(~cellfun(@isempty,regexp(A,'\(P\)')));
Explanation: parentheses are special characters in regular expressions, and need to be escaped to be treated as literal parentheses. Of course the documentation is the best place to learn how to to use regular expressions properly:
Alternatively you could simply use strfind instead of regexp:
find(~cellfun(@isempty,strfind(A,'(P)')))

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by