使用 Perl 提取字符串中的匹配项数
如何找出该字符串中的磁盘数量?
$str='disk 0_1 0_2 0_3';
在这个$str中,磁盘的数量是3。Perl
如何输出这个字符串中有多少个磁盘呢?
谢谢你!
How can I find out the number of disks in this string?
$str='disk 0_1 0_2 0_3';
In this $str
, the number of disks is 3.
How can Perl output how many disks there are in this string?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试:
Try: