LoginSignup
5
6

More than 5 years have passed since last update.

JSONのキーが "" で囲まれてなかったときに置換した

Posted at

こういう変なJSONぽいものがあったので、

{
  name : "simeji",
  hp: 3,
  mp: 55
}

これで置換した。vimで。

:%s/\v^( +)([^" ]+)(\ +)?:/\1"\2"\3:/g

結果。

{
  "name" : "simeji",
  "hp": 3,
  "mp": 55
}

よかったです。それだけです。

5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6