regexp: match the entire expression
Show older comments
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.
Accepted Answer
More Answers (0)
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!