gpt4 book ai didi

perl - Perl中是否有正则表达式来查找文件的扩展名?

转载 作者:行者123 更新时间:2023-12-03 11:44:49 25 4
gpt4 key购买 nike

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";

关于perl - Perl中是否有正则表达式来查找文件的扩展名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2467016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com