将搜索结果按组分组并存储为对象数组
P粉198814372
P粉198814372 2023-09-10 23:18:31
0
1
452

在PHP中,我使用grep在几乎所有文件中搜索和计算某些类的所有用例。

\exec("grep -orE '" . $classesBarred . "' ../../front/src/components | sort | uniq -c", $allClassesCount);

其中$classesBarred包含类似于search-unfocused|bg-app|enlarged-window(但更多)的类字符串。

当前结果为

' 2 ../../front/src/components/Actions/ActionOwner.vue:show', ' 1 ../../front/src/components/Actions/ActionOwner.vue:action', ' 1 ../../front/src/components/Actions/ActionOwner.vue:show', ' 5 ../../front/src/components/Actions/ActionOwner.vue:action', ' 1 ../../front/src/components/Actions/ActionOwner.vue:show', ....(还有几百行类似的结果)

我需要将结果保存在一个数组中,类似于:

[ {show: 38}, {action: 123}, {search-unfocused: 90}, {....} ]

编辑:@Freeman在这里提供了一个解决方案,使用awk

grep -orE "btn-gray|btn-outline-white" ../../front/src/components | awk -F: '{打印 $2}' | awk -F/ '{print $NF}' |排序| uniq-c| awk '{print $2 "::" $1}'

得到了以下结果:

btn-gray::1 btn-outline-white::13

P粉198814372
P粉198814372

全部回复 (1)
P粉277824378

是的,我可以看到,你的代码使用awkgrep的输出重新排列为两列,一列是类名,另一列是计数, 输出结果如下:

search-unfocused 90 bg-app 5 enlarged-window 12

现在你可以通过 PHP 将这个输出解析为一个数组,代码如下:

$results = array(); foreach ($allClassesCount as $line) { $parts = explode(" ", $line); $className = $parts[0]; $count = (int)$parts[1]; if (!isset($results[$className])) { $results[$className] = $count; } else { $results[$className] += $count; } }

数组的结果如下:

[ "search-unfocused" => 90, "bg-app" => 5, "enlarged-window" => 12, ... ]

更新:
如果你坚持使用 awk 和 sed,你可以这样做:

grep -orE "$classesBarred" ../../front/src/components | awk -F '/' '{print $NF}' | awk -F ':' '{print }' | sort | uniq -c | awk '{gsub(/^[ \t]+|[ \t]+$/, "", ); print "{\"""\": ""},"}' | paste -sd '' | sed 's/,$//' | awk '{print "["
[ {"show": 38}, {"action": 123}, {"search-unfocused": 90}, {....} ]
"]"}'

结果如下:

rrreee

祝你好运!

    最新下载
    更多>
    网站特效
    网站源码
    网站素材
    前端模板
    关于我们 免责声明 Sitemap
    PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!