regexp: match the entire expression
5 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Walter Roberson
2022-11-11
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'
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!