Remove numbers or other characters from a field

Hi. I have a problem that's been driving me crazy. I've tried for hours and searched here and google and nothing I've found has worked for me.

I am trying to remove numbers and/or charecters from a field, such as title. For example:

TITLE:
05 - Crazy
to
Crazy

or

05 Crazy
to
Crazy

I use the quick action REPLACE and select the field (in this case TITLE).
None of the codes I've found work in removing the numbers or dashes.

Any help would be appreciated. Thanks.

MP3Tag v2.81

You need to use replace with regular expression and use on the TITLE with:

Replace: ^\d*\s*-\s
With: Leave Blank

have a similar problem, but it won't delete the track #.

Change Title

06 - Just For One Day - (Featuring: Imaani)

To read:

Just For One Day - (Featuring: Imaani)

are need to create and action to delete leading 5 characters

Thanks

Try an action of the type "Replace with regular expression" for TITLE
Search string: (?-i)\d+ - (.*)
Replace string: $1

I also have problem. ALL topics and ^\d*\s*-*\s* similar strings ware tested, without result.
It never remove simple : 01. C-Block to C-Block for example. I go to Actions quick, then replace with regular extensions, then FILENAME and in lower field ^\d*\s*-\s, or ^\s*[01-19]\d+\s*-\s* and I press OK and still nothing happened. Do I have to do anything extra, to press some other button or?

The problem is more that

has a dot as separator and not a hypen (minus) which you specified in

For your regular expression the source would have to look like this:
01- C-block

So what I have to write then? I tried ^\d*\s*-\s what you mentioned and still not work.

If there is a string to remove everything before the first letter, please share it.

This is the same that you tried in

If you want to address a string like

then the search pattern would be:
^\d+\.\s*

I have tried all of those and nothing works

Strange.
If your sample string is correct, then it works over here:
grafik

So right now, it would be nice, if you could supply screenshots of the real filenames and the real actions that you apply.

So a quick update to ALL users. Finally, it works. here is the situation. It does not matter what you write as a string, if you type FILENAME in the first field, IT NEVER WORKS. REMEMBER THAT.
So the magic trick is to use: ^\d+.\s* ,but in the FIELD you put: ARTIST, and on the lower field, you paste: ^\d+.\s* then it changes ONLY the field ARTIST. After that, if all is ok, you have to use the top menu and to choose TAG to FILENAME and all will be good! Thanks to all of you for the support! In return, I will make a video to help other users with this. Cheers!

The correct name for the field is _FILENAME and not FILENAME. Your fieldname is missing the underscore.

Thanks a lot for the support brother!

Could it be that the error in the fieldname also led to the problems with the regular expressions?

Absolutely! With underscore, it works.

This is one of the reasons why we always suggest providing screenshots of such Actions.
Sometimes "Two heads are better than one" (or as we call it in German: “Four eyes see more than two”).