I would like to make the following find and replace:
// input
'key1': 1
'key2': 2
// output
key1: 1
key2: 2
the find should be like this pattern '\w{1,}':
what about the replace with pattern?
I would like to make the following find and replace:
// input
'key1': 1
'key2': 2
// output
key1: 1
key2: 2
the find should be like this pattern '\w{1,}':
what about the replace with pattern?
This should remove the quotes from the keys:
Find: '(.+)':
Replace: $1
$1 is in red7.0.1