i have the following example:
[ame="http://www.google.com"]Google - a search engine[/ame]
i have tried [ame=.*](.*?)[/ame] and it selects the tags and the text.
i need to select everything between the [ame][/ame] tags in order to delete it. I use Sublime Text that uses Regular Expressions but i cannot select only the text between tags and not the text with tags.
You can use the following to match:
And replace with
$1$3
See DEMO