In the following string: quantity = 100; I would like to use a regex in order to get 100.
Why doesn't the following regex return 100??
regexp('quantity=100;','(?=\w*\s*\=\s*)[^]+(?=\s*;$)','match','once')
|
|
|
You should use a negative look ahead regex in the beginning, try this:
or
|
||||
|
The regex to match any digit is
Note that MATLAB returns a cell array of matches. So you can't use |
|||
|
|