[solved] Need Help for Parsing (1 Viewer)

bta489

Portal Pro
March 17, 2013
167
92
Home Country
Germany Germany
Hi,
I'm currently trying to rescan my Database in mvCentral. I've been trying for some time now, looked into regexp-rules but regardless of what i define the results are the same:
The Files I try to parse are sorted like this: M:\Konzerte\<artist> - <album>\##. <track>.<ext>
I tried countless versions using 'simple' and 'regexp' (which are really confusing when you see it for the first time), but everytime "Konzerte" (which is german for "concerts" btw) is parsed as <artist>.

My latest version I tried was:
\\(Konzerte)+\\<artist>\s-\s<album>\\[0-9]*\.\s<track>.<ext>, but It doesn't work. Because I want to parse other files (which are sorted differently) later on, I tried to create a rule for this specific folder only. Could anyone please help?!
 

bta489

Portal Pro
March 17, 2013
167
92
Home Country
Germany Germany
This seems to work:

\\Konzerte\\(?<artist>.+(?=(\s\-\s)))\s\-\s(?<album>[^\\]+)\\[0-9]+\.\s(?<track>.+)\.(?<ext>[^.]*$)

In case someone is facing the same problems and is looking for answers here:)
 

Users who are viewing this thread

Top Bottom