0
我需要用空字符串替換給定字符串中的子字符串,並在子字符串的不同位置出現子字符串。配置單元 - 從字符串中刪除子字符串
我想刪除從字符串的這些可能的組合"fruit":"apple"
和預期相應的字符串:
{"client":"web","fruit":"apple"} --> {"client":"web"}
{"fruit":"apple","client":"web"} --> {"client":"web"}
{"client":"web","fruit":"apple","version":"v1.0"} --> {"client":"web","version":"v1.0"}
{"fruit":"apple"} --> null or empty string
我用regexp_replace(str, "\,*\"fruit\"\:\"apple\"", "")
,但沒有得到我預期的結果。構造正則表達式的正確方法是什麼?
唯一的問題是尾隨',''後「水果」:「蘋果」'? – 2016-02-27 09:21:20
解碼爲json,刪除然後重新編碼 –