Perl 去掉指定字符

去掉字符串中的*

$test = "acc";
$test =~ s/*//g;
print $test; #acc

你可能感兴趣的:(Perl 去掉指定字符)