作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有一个长度为 3 的倍数的字符串。
my $seq = "CTTCGAATT"; # in this case length of 9
$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/
我是一名优秀的程序员,十分优秀!