フィルターのクリア

extracting hex numbers from string

44 ビュー (過去 30 日間)
Adam
Adam 2012 年 2 月 28 日
Hi guys
I have a string like this: 'Address: 0x050 Value: 0xEC'
I am recieving the string from a device, so i cant change the format of the numbers.
I want to extract the hexadecimal numbers from the string and convert them to decimal numbers!
How can i do this?
thx.

採用された回答

Walter Roberson
Walter Roberson 2012 年 2 月 28 日
s = 'Address: 0x050 Value: 0xEC';
out = sscanf(s,'Address: %x Value: %x');
This includes the conversion from hex to dec.
  2 件のコメント
G A
G A 2012 年 2 月 28 日
very elegant!
Andrei Bobrov
Andrei Bobrov 2012 年 2 月 28 日
+1

サインインしてコメントする。

その他の回答 (2 件)

the cyclist
the cyclist 2012 年 2 月 28 日
Depending on how consistent the placement of the hex value is, you might be able to simply use
s = 'Address: 0x050 Value: 0xEC';
hexValue = s(10:14);
but you might have to resort to using the regexp() command to extract the hex strings.
After you extract the hex string, you can use the function hex2dec() to convert it to a decimal value.

G A
G A 2012 年 2 月 28 日
s = 'Address: 0x050 Value: 0xEC';
c = textscan(regexprep(s,'0x',''),'%s\t%s\t%s\t%s');
Address = hex2dec(c{2});
Value = hex2dec(c{4});

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by