I have the following string:
a ='0.00 (578)';
How can I use regexp to retrieve what is inside the parentheses?
I have used this
regexp('0.00 (578)', '\S*\s', 'match')
but it gives me:
'0.00 '

 Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 14 Jan 2014
Edited: Azzi Abdelmalek on 14 Jan 2014
a ='0.00 (578)';
regexp(a,'(?<=\()[\d.]+(?=\))','match')

More Answers (0)

Categories

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!