extracting numbers from a string in an array

21 views (last 30 days)
Hi,
I have an array, p, approximately 1200 rows long, and inside each cell in the array is a string with a number inside it, for example:
p(3,1)=
'"rainfall":0.1'
For each cell in the array I am trying to extract the number value. So for the above case I want the cell to simply have the number 0.1
Any ideas on how to do this? The length of the strings in each cell will be the same length, and have exactly the same characters - the only thing that changes is the number.
Many Thanks,
Sam

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 20 Sep 2012
out = cellfun(@(x)str2double(regexp(x,'\d*\.\d*','match')),p);

More Answers (1)

Jan
Jan on 20 Sep 2012
Edited: Jan on 20 Sep 2012
I assume this is faster than the regexp approach:
p = {'"rainfall":0.1', '"rainfall":0.2', '"rainfall":0.333'};
s = sprintf('%s*', p{:});
numbers = sscanf(s, '"rainfall":%g*');
Alternative, which could be faster also:
q = strrep(p, '"rainfall":', '');
s = sprintf('%s*', p{:});
numbers = sscanf(s, '%g*');
To avoid a hardcoding of the string '"rainfall":':
index = strfind(p{1}, ':');
key = p{1}(1:index(end));
q = strrep(p, key, '');
  5 Comments
shapes
shapes on 13 Oct 2012
for simplicity lets consider N040 G04 X-3 Y3 Z10 M03
K E
K E on 8 Nov 2012
Start a new question, and you are more likely to get an answer.

Sign in to comment.

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!