Thanks to the forum, I managed to make some big changes on the title of the podcast i downloaded
Filename to tag, make action group to add and remove text on title and thing like that. However I'm not so good with the regular expressions or scripting, not sure what you calls it.
I can understand the meaning of most of the code.
If I want to learn about the expression. where can I find tutorial. I'm looking at the help page but it didnt say much.
I can understand ^(\d{4}-\d{2}-\d{2}\d+), but not [\w]+_(.+)',$1$2) and the use of ' '
In https://docs.mp3tag.de/actions it states that: \w Any word character - all alphanumeric characters plus the underscore
Wrapping that in '' doesn't make any difference in this case.
For the ' ' in the regexp https://docs.mp3tag.de/scripting states there that: ,() These characters must only be escaped when they are inside a scripting function.
As you can see there is so thats why. Is the same for the part of $regexp(what,expr,repl) highlighted bold. If you want the repl to have a ,() then you have to escape it otherwise it won't work.
haha thank you. I understand a bit more again now.
Still trying to understand what escape means. Is that why you have to use '' ? for "escape"?
yeah actually just know about regexp not long ago. I just start to know I can use it to edit text with notepad++, only the basic stuff tho.
just started to use mp3tag, I have a collection of songs. It should be useful to make changing to them.
Thanks a lot with the link. gonna take time to learn about it now.
How long does it take for you to become good at regexp ?
the the following regexp ^(\d{4}-\d{2}-\d{2}\d+)[\w]+_(.+) must be wrapped with '' because it contains both ( and ). The can be said for the , character.
if you get stuck in prob a couple of days.
I just googled a free tester and came back with this wedsite http://regexpal.com/ so just type in the bottom box the specific text you want to match the it will give you live feedback as to what's doing what.