I want to upgrade a project from one version to another so, that in need to change thousands of lines with same pattern.
Example:
From this
$this->returnData['status']
To this
$this->{returnData['status']}
By using following regex i found all the matches but unable to replace with braces.
->[a-zA-z]{5,15}\['[a-zA-z]{5,15}'\]
I used following to replace
->\{[a-zA-z]{5,15}\['[a-zA-z]{5,15}'\]\}