string to num

조회 수: 2 (최근 30일)
Charles
Charles 2011년 12월 7일
Hi,
I am reading string data of this format from a text file:
(20:200,40:300)
This is the area of an image which I wish to select. How do I convert this string to number range. Thanks.
Charles-

채택된 답변

Titus Edelhofer
Titus Edelhofer 2011년 12월 7일
Hi Charles,
a simple way would be replace all non digits by spaces and use str2num afterwards:
x = '(20:200,40:300)';
x(~isstrprop(x, 'digit')) = ' ';
xNumber = str2num(x)
Titus
  댓글 수: 12
Charles
Charles 2011년 12월 7일
:-) I truly appreciate your assistance. Really, thanks a lot.
Andrei Bobrov
Andrei Bobrov 2011년 12월 7일
str2double(regexp(x,'\d+','match'))

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

osman
osman 2011년 12월 7일
use str2num
  댓글 수: 2
Sean de Wolski
Sean de Wolski 2011년 12월 7일
That won't work. He'd going to need to parse the string based on '(,:' first
Charles
Charles 2011년 12월 7일
As Sean de Wolski pointed out, it doesn't work.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by