点击或拖拽改变大小

SoftBasicHexStringToBytes 方法

将16进制的字符串转化成Byte数据,将检测每2个字符转化,也就是说,中间可以是任意字符
Converts a 16-character string into byte data, which will detect every 2 characters converted, that is, the middle can be any character

命名空间:  HslCommunication.BasicFramework
程序集:  HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法
public static byte[] HexStringToBytes(
	string hex
)

参数

hex
类型:SystemString
十六进制的字符串,中间可以是任意的分隔符

返回值

类型:Byte
转换后的字节数组
备注
参数举例:AA 01 34 A8
示例
HexStringToBytes示例
// str无论是下面哪种情况,都是等效的
string str = "13 A6 15 85 5B 05 12 36 F2 27";
//string str = "13-A6-15-85-5B-05-12-36-F2-27";
//string str = "13A615855B051236F227";
//string str = "13_A6_15_85_5B_05_12_36_F2_27";

byte[] b1 = SoftBasic.HexStringToBytes( str );
// b1 = new byte[] { 0x13, 0xA6, 0x15, 0x85, 0x5B, 0x05, 0x12, 0x36, 0xF2, 0x27 };
参见