gpt4 book ai didi

php - preg_match - 创建数组的正则表达式

转载 作者:行者123 更新时间:2023-12-02 17:06:54 26 4
gpt4 key购买 nike

我的数据 -

{'/Users/aaron/Applications/developer-vagrant/web/g.php': {'total': 22}}
{'/Users/aaron/.vim/autoload/timetap.vim': {'total': 0}}
{'/Users/aaron/.vimrc': {'total': 5}}
{'/Users/aaron/Documents/Programming/PHP/TimeTapCLI/composer.json': {'total': 144}}
{'/Users/aaron/Documents/Programming/PHP/TimeTapCLI/timetap.php': {'total': 351}}
{'/Users/aaron/Box/linux/.vim/autoload/timetap.vim': {'total': 37}}
{'/Users/aaron/Box/cats.tex': {'total': 184}}

我正在尝试创建一个正则表达式,以便可以使用 preg_match 将上面的内容转换为数组。我希望数据看起来像 -

我想要一个包含所有数据的数组,所以我相信它应该如下所示 -

 array (
[0] => array (
[0] => '/Users/aaron/Box/cats.tex'
[1] => array (
[total] =>'184'
)
}
}

我对 preg_match 的尝试 -

$subject = file_get_contents('/Users/aaron/.timetap/full.db');
$pattern = '{...}';
preg_match($pattern, substr($subject,3), $matches, PREG_OFFSET_CAPTURE);

在 PHP 中获取上述数据并将其转换为数组的模式是什么?是否有 PHP 函数可以将其转换为数组而不使用 preg_match?

最佳答案

你的正则表达式没有意义,因为你有它。一方面,您缺少分隔符。 {}. 都是特殊的正则表达式字符,因此应该对它们进行转义。这看起来也像一个 JSON 数据结构,因此 JSON 函数可能对您有用。如果您仍然想使用正则表达式,假设您的数据结构是一致的,我会这样做。

<?php
$string = "{'/Users/aaron/Applications/developer-vagrant/web/g.php': {'total': 22}}
{'/Users/aaron/.vim/autoload/timetap.vim': {'total': 0}}
{'/Users/aaron/.vimrc': {'total': 5}}
{'/Users/aaron/Documents/Programming/PHP/TimeTapCLI/composer.json': {'total': 144}}
{'/Users/aaron/Documents/Programming/PHP/TimeTapCLI/timetap.php': {'total': 351}}
{'/Users/aaron/Box/linux/.vim/autoload/timetap.vim': {'total': 37}}
{'/Users/aaron/Box/cats.tex': {'total': 184}}";
$pattern = '~^\{(.*)\}$~m';
$data[] = preg_replace_callback($pattern, function($matches) {
global $output_data;
preg_match("~'(.*?)'\s*:\s*\{'(.*?)'\s*:\s*(\d+)\}~", $matches[1], $output);
$output_data[$output[1]] = array($output[2] => $output[3]);
}, $string);
print_r($output_data);

输出:

Array
(
[/Users/aaron/Applications/developer-vagrant/web/g.php] => Array
(
[total] => 22
)

[/Users/aaron/.vim/autoload/timetap.vim] => Array
(
[total] => 0
)

[/Users/aaron/.vimrc] => Array
(
[total] => 5
)

[/Users/aaron/Documents/Programming/PHP/TimeTapCLI/composer.json] => Array
(
[total] => 144
)

[/Users/aaron/Documents/Programming/PHP/TimeTapCLI/timetap.php] => Array
(
[total] => 351
)

[/Users/aaron/Box/linux/.vim/autoload/timetap.vim] => Array
(
[total] => 37
)

[/Users/aaron/Box/cats.tex] => Array
(
[total] => 184
)

)

以下是我使用过的函数/修饰符信息的链接。

  1. http://php.net/manual/en/reference.pcre.pattern.modifiers.php
  2. http://php.net/manual/en/function.preg-replace-callback.php
  3. http://php.net/manual/en/function.preg-match.php

我稍后会写一下这里使用的部分。如果您有具体问题,请发帖。

解释正在发生的事情...

~ 是分隔符,告诉正则表达式引擎表达式从哪里开始到结束。外面的 m 是一个修饰符,告诉它将每一行视为一个字符串。 ^$ 告诉它匹配“字符串”的开头和结尾,在本例中,由于 m 修饰符,每一行都匹配。 { 之前的 \ 是为了转义在正则表达式中具有特殊上下文的大括号。 . 是任意字符,* 是量词,表示出现零次或多次。当它们配对在一起时,意味着零个或多个任何字符。周围的 () 是一个捕获组,用于存储其内部的内容,而 \} 是为了让我们停止最后一个大括号。因此,从 {'/Users/aaron/Applications/developer-vagrant/web/g.php': {'total': 22}} 我们最终得到 '/Users/aaron/applications/developer-vagrant/web/g.php': {'total': 22}.我们将其传递到一个函数中,因为我们想进一步过滤它。我们在这里使用 global 是因为我们位于这个匿名函数内部,并且希望在完成后可以访问它。'(.*?)' 正在搜索所有内容在单引号之间。这称为惰性/非贪婪, ? 使其在下一个字符(单引号)第一次出现时停止。 \s* 是任意数量的空格。这里的正则表达式的其余部分应该可以从前面的描述中解读出来。 $matches[1] 是因为我们希望首先对 preg_replace_callback 中的值进行分组,$matches[0] 是找到的所有内容(与 preg_match 相同)。然后在最后一行,我们为全局变量分配新值。

关于php - preg_match - 创建数组的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30604792/

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