gpt4 book ai didi

perl - 在 Perl 中将字符串拆分为等长 block

转载 作者:行者123 更新时间:2023-12-04 12:06:53 25 4
gpt4 key购买 nike

假设我有一个长度为 3 的倍数的字符串。

my $seq = "CTTCGAATT"; # in this case length of 9

有没有办法可以将它分成等长的 3?
最后我有这个数组:
$VAR = ["CTT", "CGA", "ATT"];

最佳答案

How can I split a string into chunks of two characters each in Perl?查看解决方案

特别是unpack可能很有趣:

my @codons = unpack("(A3)*", $seq);

关于perl - 在 Perl 中将字符串拆分为等长 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8265653/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com