perl - 将字符串拆分为 2 个字符组

发布于 2024-11-07 22:53:13 字数 661 浏览 3 评论 0原文

可能的重复:
如何拆分在 Perl 中将字符串分成每个两个字符的块?

我想将一个字符串拆分为一个数组,并按 2 个字符的片段对其进行分组:

  $input = "DEADBEEF";
  @output = split(/(..)/,$input);

这种方法会使所有其他元素都为空。

  $VAR1 = '';
  $VAR2 = 'DE';
  $VAR3 = '';
  $VAR4 = 'AD';
  $VAR5 = '';
  $VAR6 = 'BE';
  $VAR7 = '';
  $VAR8 = 'EF';

如何获得连续数组?

  $VAR1 = 'DE';
  $VAR2 = 'AD';
  $VAR3 = 'BE';
  $VAR4 = 'EF';

(...除了获取第一个结果并删除所有其他行...)

Possible Duplicate:
How can I split a string into chunks of two characters each in Perl?

I wanted to split a string into an array grouping it by 2-character pieces:

  $input = "DEADBEEF";
  @output = split(/(..)/,$input);

This approach produces every other element empty.

  $VAR1 = '';
  $VAR2 = 'DE';
  $VAR3 = '';
  $VAR4 = 'AD';
  $VAR5 = '';
  $VAR6 = 'BE';
  $VAR7 = '';
  $VAR8 = 'EF';

How to get a continuous array?

  $VAR1 = 'DE';
  $VAR2 = 'AD';
  $VAR3 = 'BE';
  $VAR4 = 'EF';

(...other than getting the first result and removing every other row...)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暖风昔人 2024-11-14 22:53:13

您可以使用以下方法轻松过滤掉空条目:

@output = grep { /.+/ } @output ;

编辑:
您可以更轻松地获得相同的东西:

$input = "DEADBEEF";
my @output = ( $input =~ m/.{2}/g );

编辑2另一个版本:

$input = "DEADBEEF";
my @output = unpack("(A2)*", $input);

问候

you can easily filter out the empty entries with:

@output = grep { /.+/ } @output ;

Edit:
You can obtain the same thing easier:

$input = "DEADBEEF";
my @output = ( $input =~ m/.{2}/g );

Edit 2 another version:

$input = "DEADBEEF";
my @output = unpack("(A2)*", $input);

Regards

萝莉病 2024-11-14 22:53:13

试试这个:

$input = "DEADBEEF";
@output = ();

while ($input =~ /(.{2})/g) {
  push @output, $1;
}

Try this:

$input = "DEADBEEF";
@output = ();

while ($input =~ /(.{2})/g) {
  push @output, $1;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文