I have written many regexes, tested an 101Regex but it still does not find what I expect
I want to match file names with the following criteria:
Code: Select all
Files start with Example:
【DU独】任
【DU独】萧
【DU独】张
In the name is the name of the artist and I want the year 2022, or 2023 or 2024 to choose one year I want to know)
The file extension is .mp3.
Regex matches 35 or 41 names, for example, but does not match all of them
Code: Select all
【DU独】([^】]+) - .+\(DjB Electro Rmx 2022\).mp3
【DU独】[\u4e00-\u9fff]+ - .+\(DjB Electro Rmx 2022\)\.mp3
【DU独】.*[\u4e00-\u9fff]+.*\(DjB Electro Rmx 2022( [\u4e00-\u9fff]+)?\)\.mp3