string to num
2 ビュー (過去 30 日間)
古いコメントを表示
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-
0 件のコメント
採用された回答
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 件のコメント
その他の回答 (1 件)
osman
2011 年 12 月 7 日
use str2num
2 件のコメント
Sean de Wolski
2011 年 12 月 7 日
That won't work. He'd going to need to parse the string based on '(,:' first
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!