需要您的幫助來尋找解決方案。我有以下jsonpython json匹配多個並替換
[{「source」:「AA」,「target」:「BB」,「metric」:「10」,「local_interface」:「100」,「remote_interface」:「200」 }, {「source」:「AA」,「target」:「BB」,「metric」:「10」,「local_interface」:「111」,「remote_interface」:「222」}, {「source」 : 「BB」, 「目標」: 「AA」, 「指標」: 「10」, 「local_interface」: 「200」, 「remote_interface」: 「100」}]
目標是:
- 獲取作爲源/目標/本地接口的第一個元素(即:模式)
- 搜索剩餘的元素東西匹配源= pattern.target,目標= pattern.source,remote_interface = pattern.local_interface
- 從json中刪除元素。
希望這是有道理的。
那麼你的代碼在哪裏,它的問題究竟是什麼? – jonrsharpe