Problem with regular expressions for complex search operations in unicode names.
The problem stems from the fact that my regex contains a negative condition
and I can't match all the names to a single performer name.
Someone can help, because for one it matches and for another it doesn't and so I keep mis-matching to a number of different song names.
Example:
^(?!.*(?:Time|Sweet)).*ARTISTname.*\.mp3$
Time, Sweet = example name of song
Instead of finding these two names to it also finds other names and does not match one artist name to another
Will search, but I have to add as many as 10000 repetitions of the same artist, so not optimizing the action, is bad
(NAME1.*ARTISTname|name2.*ARTISTname)
The problem stems from the fact that my regex contains a negative condition
and I can't match all the names to a single performer name.
Someone can help, because for one it matches and for another it doesn't and so I keep mis-matching to a number of different song names.
Example:
^(?!.*(?:Time|Sweet)).*ARTISTname.*\.mp3$
Time, Sweet = example name of song
Instead of finding these two names to it also finds other names and does not match one artist name to another
Will search, but I have to add as many as 10000 repetitions of the same artist, so not optimizing the action, is bad
(NAME1.*ARTISTname|name2.*ARTISTname)
Statistics: Posted by Debugger — Sun May 05, 2024 1:53 pm