提取Ascii字符串 – bytesToAscii
从字节数组中提取Ascii字符串,一个字节代表一个字符。配合上位机协议解析器控件使用。
要处理非ASCII字符串,使用 bytesToString 函数。
定义
string bytesToAscii(byte[] array, int start, int len);
参数
- array:
字节数组
- start:
起始位置
- len:
提取多少个字节
返回值
提取出来的字符串
示例
byte a[5] = {0x31,0x32,0x33,0x34,0x35};
text3.txt = bytesToAscii(a,0,5);//text3文本控件显示”12345”