前端之家收集整理的这篇文章主要介绍了
在Perl中是否有正则表达式找到文件的扩展名?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Perl中是否有正则表达式找到
文件的扩展名?例如,如果我有“test.exe”,我该如何
获取“.exe”?
my $file = "test.exe";
# Match a dot,followed by any number of non-dots until the
# end of the line.
my ($ext) = $file =~ /(\.[^.]+)$/;
print "$ext\n";
原文链接:https://www.f2er.com/Perl/173135.html