Remove Text from Parentheses on Title

You've helped with the generic Remove Parentheses from song Title. Now to be a little more specific with two more requests.

First, I would like to specify a word, like Remastered, and if the text in parenthesis contains that word (by itself or along with other text), delete the parenthesis (and text) from the track name.

Second, I would like to specify a word like Live, and if the text in parenthesis contains that word (by itself or along with other text), keep the parenthesis, but with only that word, (Live).

You guys are awesome! Fingers crossed.
THANKS!

See e.g. here:

You answered the
question "First". It worked PERFECT! Thanks.

Remove parenthesis if it contains a word. in this case "remastered" Use Convert > Tag-Tag > $regexp(%TITLE%,(.*)(\s\(.*remastered**
.*\)),$1,1)
Although this works perfect, don't make my mistake and not notice "Remastered" vs "Remaster". :slight_smile:

Can you help with the question, "Second". My goal is to reduce the length of
song titles so there is not as much scrolling on some displays. If the parenthesis contains the word "live" with or without other text like the location or year, I would still like to retain the parenthesis with just the word "live" (live), but no other text.

In the link to answer the first question, there were options to ignore case. If possible, can this second question also ignore case? live = Live = LIVE.

I am keeping notes and can substitute some text here and there, but these formulas are way beyond my ability. Thank you guys so much for helping!

Use the already known regular expression
and modify it to
$regexp(%TITLE%,(.*)(\s\(.*Live.*\)),'$1 (Live)')

The expression

Has an asterisc too much

Again, that worked PERFECT! Thank AGAIN.

The previous "First" question solution was taken from another post so I tried to paste the solution here, but the forum software added quoting characters when I pasted. Sorry I didn't catch that one.