内容简介:翻译自:https://stackoverflow.com/questions/2427527/how-can-i-convert-a-48-hex-string-to-bytes-using-perl
步骤是:
>从字符串中提取十六进制字符对.
>将每对转换为十进制数.
>将数字打包为一个字节.
例如:
use strict; use warnings; my $string = 'AA55FF0102040810204080'; my @hex = ($string =~ /(..)/g); my @dec = map { hex($_) } @hex; my @bytes = map { pack('C', $_) } @dec;
或者,更紧凑地表达:
use strict; use warnings; my $string = 'AA55FF0102040810204080'; my @bytes = map { pack('C', hex($_)) } ($string =~ /(..)/g);
翻译自:https://stackoverflow.com/questions/2427527/how-can-i-convert-a-48-hex-string-to-bytes-using-perl
以上所述就是小编给大家介绍的《如何使用Perl将48个十六进制字符串转换为字节?》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- HTML实体:何时使用十进制与十六进制
- [Java] 蓝桥杯BASIC-12 基础练习 十六进制转八进制
- 查找一个字符串中最长不含重复字符的子字符串,计算该最长子字符串的长度
- (三)C语言之字符串与字符串函数
- 算法笔记字符串处理问题H:编排字符串(2064)
- 如何在JavaScript中检查字符串是否包含子字符串?
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Little MLer
Matthias Felleisen、Daniel P. Friedman、Duane Bibby、Robin Milner / The MIT Press / 1998-2-19 / USD 34.00
The book, written in the style of The Little Schemer, introduces instructors, students, and practicioners to type-directed functional programming. It covers basic types, quickly moves into datatypes, ......一起来看看 《The Little MLer》 这本书的介绍吧!