How can I replace text in NetBeans using regular expressions?
For instance,
I want to replace these texts below,
$item->article_id
$item->title
$item->content
...
with
$item['article_id']
$item['title']
$item['content']
...
I tried with this below in the input field of 'Containing Text:'
$item->(.*)
But no match found.
Any ideas?