当前位置:  开发笔记 > 编程语言 > 正文

有没有更好的方法来计算字符串中char的出现?

如何解决《有没有更好的方法来计算字符串中char的出现?》经验,为你挑选了2个好方法。



1> toolic..:

计算字符串中字符的出现可以使用Perl中的一行(与4行相比)来执行.不需要sub(尽管在sub中封装功能没有任何问题).来自perlfaq4"如何计算字符串中子字符串的出现次数?"

use warnings;
use strict;

my $str = "ru8xysyyyyyyysss6s5s";
my $char = "y";
my $count = () = $str =~ /\Q$char/g;
print "count<$count> of <$char> in <$str>\n";



2> ikegami..:

如果角色不变,则最好:

my $count = $str =~ tr/y//;

如果角色是可变的,我会使用以下内容:

my $count = length( $str =~ s/[^\Q$char\E]//rg );

如果我想要与早于5.14的Perl版本兼容(因为它更慢并且使用更多内存),我只使用以下内容:

my $count = () = $str =~ /\Q$char/g;

以下不使用内存,但可能有点慢:

my $count = 0;
++$count while $str =~ /\Q$char/g;

推荐阅读
wurtjq
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有