If filename contains 'x', add 'y' to Album Artist field

I simply want to to do the following IF statement (an 'Action' perhaps)

for example - IF a filename contains 'SC Karaoke', write 'Sound Choice Karaoke' to the Album Artist field.

I've tried to find this answer via Google and previous comments in the community without any luck, forgive me if I've missed this answer elsewhere.

pardon my ignorance, I appreciate your time.

Before you start with modifications, make sure you have a backup if anything goes wrong.
If

is the only string that you want to set, then a filter would be the quickest way.
Use
%_filename% HAS "SC Karaoke"
and then enter the correct album artist in the tag panel.

The approach with the filter is also the fastest approach if you want to treat other strings as with an action you would have to create an action for each search string and data string.

Another idea to append "Sound Choice Karaoke" to ALBUMARTIST:
Create a new Action "Format Value":
Field: ALBUMARTIST
Formatstring:
$ifgreater($strstr(%_FILENAME%,'SC Karaoke'),0,%ALBUMARTIST%Sound Choice Karaoke,)

If you want to overwrite the existing content in ALBUMARTIST (whatever it currently contains) with "Sound Choice Karaoke", then you could use
$ifgreater($strstr(%_FILENAME%,'SC Karaoke'),0,Sound Choice Karaoke,)

Please be aware that you will loose the content of ALBUMARTIST with the second Format string.

Hint:
$strstr(x,y) finds the first occurrence of string y in string x.
If you would choose only 'SC' as search string, it would also match SCHNEE or any other word starting with SC.

Test this carefully with your existing filenames.