繁体   English   中英

用Perl提取文件名

[英]Extract filename with Perl

我正在编写一个脚本,该脚本逐行读取多个文件,检查每一行的文件引用,然后检查这些文件的存在。

在文件中,我有这样的字符串: example 1: soundSet = { name = "bus_modern", horn = "vehicle/truck_modern/horn.wav" } example 2: id = "vehicle/bus/citaro/lod_0_w2.msh", example 3: "vehicle/bus/berkhof_duvedec/berkhof_duvedec_lod_0_w2.msh", "vehicle/bus/berkhof_duvedec/berkhof_duvedec_lod_0_w3.msh",

因此,我需要以某种方式从字符串中提取文件名。 我当前的尝试是从字符串中删除所有空格,剪切包括“ -char”的第一部分,并切掉第二个“ -char”之后的所有内容。

这显然不适用于示例1和3:在示例1中,我的文件引用位于字符串的第二部分,在示例3中,我要提取两个文件。

不,我很困惑,如何从给定的字符串中提取任何文件引用?

    open $filehandle, "<", $file or die "can't open $file\n";

    # read the whole file and check for references
    while (<$filehandle>)
    {
        my $line=$_;
        my $count=0;
       $count++ while ($line =~ m/\//g);
       # looks like we found a file-reference
        if ( $count > 1) 
        { 
           # remove all whitespace now

            # prefix whitespace
            $line =~ s/^\s+//;

            # suffix whitespace
            $line =~ ~ s/\s+$//;

            # intermediate whitespace
            $line=~ s/ //g;

            # cut until "
            $line=~ s/[^\"]*\"//;
            pdebug (2, "    rem-pre-\": $line \n");

            # chop off all chars after "
            my $oper = index($line, '"');
            my $word = substr($line, 0, $oper);
            $line=$word;


            # putting it together
            my $searchfile=buildpath($line);
            if ( -e $searchfile )
            {
                pdebug(1,"found\n");
            }
            else
            {
                pdebug(1,"not found\n");
                print "\nunmatched reference in file:\n$file\n";
                findline($file,$line);
                print"\ncouldn't find file:\n       $searchfile\nreferenced as:\n$line\n";


            }
        }

到目前为止,这是我代码的相关部分。 我未遍历目录结构以标识必须检查的每个文件的部分未显示。 未在此处未显示的代码中使用的潜艇:

pdebug:打印出debugtext

findline:需要搜索的文件名和字符串,打印出找到的行号

buildpath:每个文件类型都属于一个子目录(例如,音频/效果中为.wav,纹理中为.tga),buildpath检查文件名并返回完整路径

有人可以在这里指引我正确的方向吗?

我认为最好只使用一个正则表达式:

while (<$filehandle>)
{
   my @filenames = /(?<=")(?:\w+\/)*\w+[.]\w+(?:")/g;
   say join("$_\n", @filename) if @filename > 0;
}

请参阅此处以查看正则表达式: https : //regex101.com/r/bA4oZ7/1

'x'修饰符允许编写多行正则表达式并在此处添加一些注释,以解释正则表达式(可在此处找到: https : //regex101.com/r/bA4oZ7/3

my $re qr/(?<=") # A filename is after a double quote char
(?:[^"\/]+\/)+   # the path is one or more words separated with a slash
[^"\/]+          # The filename (not the path) can be anything but a double quote char and a slash
[.]\w+           # The extension cannot have space and have the form of .foobar
(?:")            # A filename end with a double quote char
/gx;

...
my @filenames = /$re/g;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM