void wrote: ↑Sun Mar 17, 2024 11:13 pm
Currently, Everything will read the entire alternate data stream.
One idea is to use regmatches.
Pardon me for the late follow up...
I was able to test your solution, while it works as you intended, its really not applicable for what I need.
It seems that the column is only temporary, once I change the search it gets undone, thus I am not able to work with it like standard Everything Properties.
Everything properties such as
tags or
extensions are constant and their values can always be referenced by the various functions and transform them.
I suppose I can apply a filter to always apply the RegEx capture group but I am not sure how optimal this would be against large database spanning 10+ disks and since only one filter can be active, this might complicate things
Everything already has the ability to create custom columns and assign arbitrary data for their values.
If I may ask for one feature request, can we get the ability to split a arbitrary property into two parts, and assign both parts to
custom_property_
columns.
For example if I had a value such as "Hello World", split it by " " and assign both parts to custom columns, with the result being something like:
Code: Select all
custom_property_0=Hello
custom_property_1=World
This is the one feature that is missing on Everything, often times, its not up to us how we get the data, if we can parse it and then assign the results to
custom_property_ columns, that would be perfect.
I hope you will consider adding this feature, I really need it.