已关闭,此问题需要更focused,目前不接受回答。
**想要改进此问题吗?**更新此问题,使其仅关注editing this post的一个问题。
上个月关门了。
此帖子已于5天前编辑并提交审核,未能重新打开帖子:
原始关闭原因未解决
Improve this question
我期待转换表格式的字符串是一个纽曼响应JSON格式。下面是字符串
┌─────────────────────────┬────────────────────┬───────────────────┐
│ │ executed │ failed │
├─────────────────────────┼────────────────────┼───────────────────┤
│ iterations │ 1 │ 0 │
├─────────────────────────┼────────────────────┼───────────────────┤
│ requests │ 30 │ 0 │
├─────────────────────────┼────────────────────┼───────────────────┤
│ test-scripts │ 60 │ 0 │
├─────────────────────────┼────────────────────┼───────────────────┤
│ prerequest-scripts │ 38 │ 0 │
├─────────────────────────┼────────────────────┼───────────────────┤
│ assertions │ 56 │ 0 │
├─────────────────────────┴────────────────────┴───────────────────┤
│ total run duration: 8.9s │
├──────────────────────────────────────────────────────────────────┤
│ total data received: 8.19kB (approx) │
├──────────────────────────────────────────────────────────────────┤
│ average response time: 267ms │
└──────────────────────────────────────────────────────────────────┘
我正在尝试将上面的转换为JSON响应,如下所示
{
"iterations": {
"executed" : 1,
"failed" : 0
},
"requests":{
"executed" : 30,
"failed" : 0
},
"test-scripts":{
"executed" : 60,
"failed" : 0
},
"prerequest-scripts":{
"executed" : 38,
"failed" : 0
},
"assertions":{
"executed" : 60,
"failed" : 0
},
"total run duration": "8.9s"
"total data received": "8.19kB (approx)"
"average response time": "267ms"
}
有人能帮我一下吗。
1条答案
按热度按时间2eafrhcq1#
给定 exact 字符串:
你可以使用这个ruby:
图纸: