'How to remove a sub string pattern from a json string in vim?

json_str = {"type":"0","num":"1","processtime_ms":"14","model":"label"}

I have a lot of json string like this, and I want to remove this part from the string in vim:

"processtime_ms":"14",

I know how to remove a full line when matching a pattern, but how to remove the substring?

vim


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source