Filter löschen
Filter löschen

string to num

2 Ansichten (letzte 30 Tage)
Charles
Charles am 7 Dez. 2011
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-

Akzeptierte Antwort

Titus Edelhofer
Titus Edelhofer am 7 Dez. 2011
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 Kommentare
Charles
Charles am 7 Dez. 2011
:-) I truly appreciate your assistance. Really, thanks a lot.
Andrei Bobrov
Andrei Bobrov am 7 Dez. 2011
str2double(regexp(x,'\d+','match'))

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

osman
osman am 7 Dez. 2011
use str2num
  2 Kommentare
Sean de Wolski
Sean de Wolski am 7 Dez. 2011
That won't work. He'd going to need to parse the string based on '(,:' first
Charles
Charles am 7 Dez. 2011
As Sean de Wolski pointed out, it doesn't work.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by