I want to regsub without exception, so as not to double I do a regsub.
example before:
regsub -all "feat" $songtitle "" songtitle
regsub -all "Feat" $songtitle "" songtitle
I want a simple one line for regsub:
regsub -all "feat" $songtitle "" songtitle
It's a little inconvenient if there are many words that I want to regsub, I want it to be simple with no exceptions in the regsub, so that only one line of each word is regsub, not two lines for uppercase and lowercase letters. thanks