In sublime text, I need to replace all instances of:
rs(\'???????\')
with
$rs[\'??????\']
(keeping the ?????
Find regex:
rs\('(.*?)'\)
Replace:
$rs['$1']
Beware that this will expect anything inside the quotes; if it isn't what you need, please tell me :)