How do you combine an "Or" and an "And" search
How do you combine an "Or" and an "And" search
Hello
What filter expression would I need to return, all file names that match any of these strings:
_01 _02 _03 _04 _25 _26 _27 _28
"this is an the 'or' part of the search"
plus
Those returned in the above search must all match "Trap"
"This is an ''and" search applied to the above returns.
Thank You
What filter expression would I need to return, all file names that match any of these strings:
_01 _02 _03 _04 _25 _26 _27 _28
"this is an the 'or' part of the search"
plus
Those returned in the above search must all match "Trap"
"This is an ''and" search applied to the above returns.
Thank You
-
- Liqube Audio
- Posts: 979
- Joined: December 12th, 2012, 19:12
- First Name: Tom
- Primary DAW: Live
- Resonic: Pro
- Location: Earth (currently)
- Contact:
In 0.9.3 and below:
You cannot really do this as the filter always uses AND logic.
From 0.9.4:
To filter any of these (OR) you'd write:
To also match all these against "Trap" (AND) you'd write:
Sneak peek: https://resonic.at/docs/preview/file-list#filter
You cannot really do this as the filter always uses AND logic.
From 0.9.4:
To filter any of these (OR) you'd write:
Code: Select all
_01 _02 _03 _04 _25 _26 _27 _28
Code: Select all
_01 _02 _03 _04 _25 _26 _27 _28 +Trap
Join our Discord for chat and talk (not just Resonic related) and beta testing; or the Resonic Users group on FB.
A user interface is like a joke: if you have to explain it, it's not that good.
A user interface is like a joke: if you have to explain it, it's not that good.
Hi
The filter combines "or" and "and" in a single filter expression perfectly. Exactly as you typed it below.
_01 _02 _03 _04 _25 _26 _27 _28 +Trap
I got the returns I was hoping for.
I didn't mention to you that the string: "Trap" was in the folder name, so I enabled 'meta' metadata.
and set the following metadata options:
• File > File name without path
• Path > Path without file name.
It worked.
One thing I don't get is, it only works when I have 'ext' enabled.?
Extension plays no parts in the search??
Why must 'ext' be enabled?
Thank you.
The filter combines "or" and "and" in a single filter expression perfectly. Exactly as you typed it below.
_01 _02 _03 _04 _25 _26 _27 _28 +Trap
I got the returns I was hoping for.
I didn't mention to you that the string: "Trap" was in the folder name, so I enabled 'meta' metadata.
and set the following metadata options:
• File > File name without path
• Path > Path without file name.
It worked.
One thing I don't get is, it only works when I have 'ext' enabled.?
Extension plays no parts in the search??
Why must 'ext' be enabled?
Thank you.
-
- Liqube Audio
- Posts: 979
- Joined: December 12th, 2012, 19:12
- First Name: Tom
- Primary DAW: Live
- Resonic: Pro
- Location: Earth (currently)
- Contact:
That's clearly a bug or a wrongly labeled button (ref. 0.9.4 pre-release). Will fix that now.Why must 'ext' be enabled?
Besides, we've got a bug tracker now at https://bugs.liqube.com
Join our Discord for chat and talk (not just Resonic related) and beta testing; or the Resonic Users group on FB.
A user interface is like a joke: if you have to explain it, it's not that good.
A user interface is like a joke: if you have to explain it, it's not that good.
-
- Liqube Audio
- Posts: 979
- Joined: December 12th, 2012, 19:12
- First Name: Tom
- Primary DAW: Live
- Resonic: Pro
- Location: Earth (currently)
- Contact:
Join our Discord for chat and talk (not just Resonic related) and beta testing; or the Resonic Users group on FB.
A user interface is like a joke: if you have to explain it, it's not that good.
A user interface is like a joke: if you have to explain it, it's not that good.
Re:
-
- Yay, I posted something
- Posts: 1
- Joined: June 24th, 2022, 06:38
- First Name: Roger
Re:
This is exactly what I was looking for, thank you so much for sharingNulls Brawl APK!Tom wrote: ↑April 20th, 2020, 19:41In 0.9.3 and below:
You cannot really do this as the filter always uses AND logic.
From 0.9.4:
To filter any of these (OR) you'd write:To also match all these against "Trap" (AND) you'd write:Code: Select all
_01 _02 _03 _04 _25 _26 _27 _28
Sneak peek: https://resonic.at/docs/beta/file-list#filterCode: Select all
_01 _02 _03 _04 _25 _26 _27 _28 +Trap
Re:
Thanks for sharing this information. If it is right then I will be very grateful. anonymous instagram viewerTom wrote: ↑April 20th, 2020, 19:41In 0.9.3 and below:
You cannot really do this as the filter always uses AND logic.
From 0.9.4:
To filter any of these (OR) you'd write:To also match all these against "Trap" (AND) you'd write:Code: Select all
_01 _02 _03 _04 _25 _26 _27 _28
Sneak peek: https://resonic.at/docs/preview/file-list#filterCode: Select all
_01 _02 _03 _04 _25 _26 _27 _28 +Trap
-
- Yay, I posted something
- Posts: 1
- Joined: August 25th, 2025, 06:13
- First Name: Marcus
Re: How do you combine an "Or" and an "And" search
DiBraccio wrote: ↑April 20th, 2020, 16:38Hello
What filter expression would I need to return, all file names that match any of these strings:
_01 _02 _03 _04 _25 _26 _27 _28
"this is an the 'or' part of the search"
plus
Those returned in the above search must all match "Trap"
"This is an ''and" search applied to the above returns.
Thank You
Are you trying to do this in a file manager, a search tool (like Everything/grep), or inside a programming language?Lightroom Mod APK
For example, in many search tools you’d do something like:
( _01|_02|_03|_04|_25|_26|_27|_28 ) AND Trap
In regex (if supported):
(_01|_02|_03|_04|_25|_26|_27|_28).*Trap
Do you want the filter to work only if "Trap" appears anywhere in the filename along with one of those codes? Or does "Trap" have to come after the codes?