2014-02-13 71 views
0

我已經生成了非常大的json文件,並意識到我已經生成了一個重複的字段。而不是再次輸出所有這些文件(非常冗長),我認爲這將是有益的,如果我可以使用記事本++查找和替換功能根據需要進行編輯。查找並替換重複條目記事本++

我的JSON的領域是這樣的:

{ 
"PlayerID":44, 
"CurrentTeam":"WAS", 
"Number":95, 
"CurrentAuctionValue":2, 
"CurrentAuctionValue":0, 
"LastPlayedPoints":0 
}, 
{ 
"PlayerID":11, 
"CurrentTeam":"WAS", 
"Number":96, 
"CurrentAuctionValue":0, 
"CurrentAuctionValue":0, 
"LastPlayedPoints":0 
}, 

幸運的是JSON我這一代的代碼始終使第二CurrentAuctionValue 0,但我不需要這個領域。爲方便起見,我想擺脫它。拍賣價值可能爲0,但只有第一個CurrentAuctionValue是重要的。有什麼方法可以搜索多行並替換?

基本上處於「代碼」的格式我想做的事:

Find: "CurrentAuctionValue":%d,\n"CurrentAuctionValue":0,\n 
Replace: "CurrentAuctionValue":%d,\n 

我試着用記事本的搜索功能打不過沒有成功。其他方法的建議歡迎!

回答

1

搜索模式:Regular expression

查找內容:("CurrentAuctionValue":\d+),\r\n"CurrentAuctionValue":0,

替換:$1

enter image description here

+0

完美的作品。非常感謝! – ZAX