Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の検索と置換を行いたいと思います。
// input 'key1': 1 'key2': 2 // output key1: 1 key2: 2
検索はこのパターンのようにする必要がありますパターン'\w{1,}': との置換はどうですか?
'\w{1,}':
これにより、キーから引用符が削除されます。
探す:'(.+)':
'(.+)':
交換:$1
$1