Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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')

share|improve this question

2 Answers

up vote 1 down vote accepted

You should use a negative look ahead regex in the beginning, try this:

regexp('quantity=100;','(?<=\w*\s*\=\s*)[^]+(?=\s*;$)','match','once')

or

regexp( 'quantity=100;', '(?<=^.*\=\s*)(.*)(?=\s*;$)', 'match', 'once' ) which is much simpler

share|improve this answer
That did the job, thanks! – user1020947 Oct 30 '11 at 18:57
I have never seen [^]+ actually compile without errors. It must be a Matlab thing. – FailedDev Oct 30 '11 at 19:03
@FailedDev: yes it is weird but works at least in matlab – niels Oct 30 '11 at 21:09

The regex to match any digit is \d. So if your strings are only of the form text=numbers, then the following will work.

digits = regexp( 'quantity=100;', '\d', 'match');
result = [digits{:}]

result = 
         '100'

Note that MATLAB returns a cell array of matches. So you can't use 'once' because it will return only 1.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.