How to extract numbers from a string?

xx = '[10,10]'
I want to convert the string xx to a number and extract the first and second value in a single line. What I am trying to do is extract the 1st and 2nd value without storing them in any variable.
Is there any solution to this? Thanks!

 Accepted Answer

madhan ravi
madhan ravi on 12 Jul 2020
Edited: madhan ravi on 12 Jul 2020
sscanf(xx, '[%d, %d]', [1,inf])
%or
str2double(regexp(xx, '\d*', 'match'))

3 Comments

John Doe
John Doe on 12 Jul 2020
Edited: John Doe on 12 Jul 2020
Thanks Madhan for the prompt reply.
Could you please tell me what to do if I want to extract the second value only from xx?
Rather complicated:
subsref(str2double(regexp(xx,'\d*','match')), substruct('()', {2}))
Thanks! My day is saved!

Sign in to comment.

More Answers (0)

Categories

Asked:

on 12 Jul 2020

Commented:

on 12 Jul 2020

Community Treasure Hunt

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

Start Hunting!