Hi
I've tried to do a search in my indexed MP3-Collection.
But per RegEX.
For example i'm looking for mp3-Files where the lenght of Field encoded_by: matches 5 characters
thanks in advance
Search per RegEx in Properties like ID-Field
Re: Search per RegEx in Properties like ID-Field
The easiest way to do this is with the len: search modifier.
*.mp3 len:encoded-by:5
If you want to use regex, please try the following:
*.mp3 regex:encoded-by:^.{5}$
^ = match start of encoded-by
. = match any character
{5} = match the previous element 5 times.
$ = match the end of encoded-by
*.mp3 len:encoded-by:5
If you want to use regex, please try the following:
*.mp3 regex:encoded-by:^.{5}$
^ = match start of encoded-by
. = match any character
{5} = match the previous element 5 times.
$ = match the end of encoded-by
Re: Search per RegEx in Properties like ID-Field
Thanks a lot
it could be so easy as it is.
it could be so easy as it is.