1

我有一个格式如下的 json 文件。我想修改该文件以便向其中添加另一个键值对。键应该是url,值应该www.mywebsite.co.nz从下面给出的消息中提取。这样做的最简单方法是什么?

{"  
Timestamp":"Mon Mar 16 21:37:22 EDT 2015","Event":"Reporting  Time","Message":"load for http://xxx.xx.xx.xx:1xxxx/operations&proxy=www.mywebsite.co.nz&send=https://xxx.xx.xx.xx:xxxx/operations?event took 9426 ms (X Time: 306 ms, Y Time: 1923 ms)
StatusCode: Unknown<br>Cookies: nzh_weatherlocation=12; dax_ppv=11|NZH:home|NZH:home|NZH:home|9|undefined; _ga=GA1.4.1415798036.1426208630; _gat=1<br>Links: 225<br>Images: 24<br>Forms: 10<br>Browser: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/41.0.2272.76 Chrome/41.0.2272.76 Safari/537.36<br>CPUs: 2<br>Language: en-GB","UserInfo":"Reporting Time"}
4

2 回答 2

2

作为jq和的组合sed

jq ".url = \"$(jq '.Message' input.json | sed 's/.*proxy=\([^&]*\).*/\1/')\"" input.json > output.json

这包括三个步骤:

jq '.Message' input.json

从输入 JSON 中提取消息部分,

sed 's/.*proxy=\([^&]*\).*/\1/'

从消息中提取域,并且

jq ".url = \"domainname\"" input.json > output.json

.url输入 json 的属性设置为提取的域名,将结果写入output.json.

顺便说一句,我觉得有必要指出,域名本身在技术上并不是一个 URL,因此您可能需要重新考虑该属性名称。

于 2015-03-17T20:09:45.210 回答
1

对于perl用户,使用ojo

perl -Mojo -E '$j=j(b("input.file")->slurp);if($j->{Message}=~m/proxy=(.*?)&/){$j->{url}=$1;say j($j)}'

分解:

  • b()->slurp- 读取input.file
  • j()- 将 json 转换为 perl 数据
  • 如果Message包含“proxy=site&” - 获取站点
  • 将数据添加到url => site
  • j()转换为 json 字符串
  • 并打印出来。
于 2015-03-17T20:50:11.443 回答