Use case or problem
As a writer I would like to be able to specify capture groups for queries with RegEx within them.
path:(Operations/Calendar/Daily/2022/03/2022-03-07) /Summary of topics discussed/
Example:
Ideally, “Summary of topics discussed” could be removed from the query results. and only the remaining text would be returned by the query
Proposed solution
Regex Capture groups.
Example Query
path:(Operations/Calendar/Daily/2022/03/2022-03-07) /Summary of topics discussed((.|\n)*)-/
This slight modification would match only the text in the capture group. Alternatively a named, capture group could be returned somehow.
Current workaround (optional)
Just living with the annoyance.
Edit:
Issue is crossposted to [Feature Request] Regex Capture groups · Issue #8 · nothingislost/obsidian-query-control · GitHub