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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This should remove the quotes from the keys:
Find:
'(.+)':Replace:
$1