找出给定范围内的数字?
请告诉我在这背后编写 Perl 程序的概念?
167 GATCAAAATACTTGCTGGA 185
192 TAGTAGATAGATAGATAGTAGTAG 228
在文件A中,我的范围是上面给出的167到185
,
在另一个文件B中 也是192到228
> 我现在已经从文件 B 中的上述数字集中找到了一组数字
2 3 4 5 6 7 8 168 169 179 185 193 1000
,我需要找出 167 到 185 范围内存在的数字以及 在输出中打印这些数字。
那么,输出将是 168,169,179,185, 193
编写这个程序背后的概念是什么?
kindly tel me the concept to write a Perl program behind this ?
167 GATCAAAATACTTGCTGGA 185
192 TAGTAGATAGATAGATAGTAGTAG 228
in a fileA i ve a range from 167 to 185
as given as above and also 192 to 228
in another fileB i ve set of numbers
2 3 4 5 6 7 8 168 169 179 185 193 1000
now from the above set of numbers in file B, i need to find out which are the numbers present between the range of 167 to 185 and
print those numbers in the output.
so, output will be 168,169,179,185, 193
what will be the concept behind writing this program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您有 Perl 版本 5.010 或更高版本,您可以尝试以下操作:
If you have Perl-version 5.010 or greater you could try this:
输出:
Output:
如果你可以使用 Ruby(1.9+)
输出:
if you can use Ruby(1.9+)
output: