I have the follow text in a document (using Notepad++).
Now, I want to replace all regex occurence with a ?.
I have:
'{$data}', '{$data2}', '{$res}','{$blahblahblah}'
And I want them to become ?,?,?,?
I tried using \b^'{(.+)}'$\b  but that doesn't seem to find the pattern.
^and$here..\{\$.+?\}instead.