regexp: match the entire expression
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mary
el 11 de Nov. de 2022
Comentada: mary
el 12 de Nov. de 2022
Hi,
Is there any way to do the match between an expression and a pattern perfectly and not partially?
Example:
setStrings{1} = '2*x + 3';
setStrings{2} = '2*x';
first_kind = regexp(setStrings, '(?<A>-?\d+)\s*\*\s*x', 'names')
second_kind = regexp(setStrings, '(?<A>-?\d+)\s*\*\s*x\s*(?<B>[+-]\s*\d+)', 'names')
here both strings 1 and 2 are considered to be of first kind. What I want is to exclude that the expression 2 can be counted as the first kind because it does not have B. So probably the option 'names' should be changed into something that guarantees the perfect match, otherwise it excludes it. Here in this example we have a partial match.
0 comentarios
Respuesta aceptada
Walter Roberson
el 11 de Nov. de 2022
setStrings{1} = '2*x + 3';
setStrings{2} = '2*x';
first_kind = regexp(setStrings, '^\s*(?<A>-?\d+)\s*\*\s*x\s*$', 'names')
second_kind = regexp(setStrings, '(?<A>-?\d+)\s*\*\s*x\s*(?<B>[+-]\s*\d+)', 'names')
By default, ^ matches "immediately after the beginning of input" and $ matches "immediately before end of input". However if you add the option 'lineanchors' then $ matches immediately after the beginning of each input line and $ matches immediately before the end of each input line (so $ does not match the newline itself.) If you use 'lineanchors' then it is common that you will also end up needing the option 'dotexceptnewline'
Más respuestas (0)
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!