限制文件名匹配以特定方式启动

时间:2013-03-28 15:21:40

标签: php regex

我在运行批处理脚本的目录中有数千个文件要处理。

相关文件全部以XX-XX-XX开头(至少一个整数,但不超过两个,下划线将三个数字分开)

我用txt2re创建了这个:

 $txt='1-2-3';

  $re1='(\\d+)';    # Integer Number 1
  $re2='(-)';   # Any Single Character 1
  $re3='(\\d+)';    # Integer Number 2
  $re4='(-)';   # Any Single Character 2
  $re5='(\\d+)';    # Integer Number 3

  if ($c=preg_match_all ("/".$re1.$re2.$re3.$re4.$re5."/is", $txt, $matches))
  {
      $int1=$matches[1][0];
      $c1=$matches[2][0];
      $int2=$matches[3][0];
      $c2=$matches[4][0];
      $int3=$matches[5][0];
      print "($int1) ($c1) ($int2) ($c2) ($int3) \n";
  }

是否有可能获得更紧凑的版本,我可以在单个函数中与文件名进行比较。

2 个答案:

答案 0 :(得分:1)

您可以使用

"/^\d\d?-\d\d?-\d\d?/"

如果数字以下划线分隔,请使用_代替-

答案 1 :(得分:1)

您可以在声明中将所有内容连接在一起。

$txt='1-2-3';

$re = '/(\d+)-(\d+)-(\d+)/is';

if ($c=preg_match_all ($re, $txt, $matches))
{
    $int1=$matches[1][0];
    $int2=$matches[2][0];
    $int3=$matches[3][0];
    print "($int1) (-) ($int2) (-) ($int3) \n";
}

请注意,我删除了-周围的分组,因为这些分组保持不变。您可以在Debuggex处逐步完成此正则表达式。