Hello,
I tried to create a column to display the remaining part certain search, for example:
if I have a list of pahs:
c:\aaaa\bbbb\cccc\123\dddd.jpg
d:\xyz\123\eeee\jjjj\nnnn\rrrr\wkw.mp4
the search is: 123
so the new column will be
123\dddd.jpg
123\eeee\jjjj\nnnn\rrrr\wkw.mp4
the reason I needed this is to copy or move the new path to a certain location which will be :
c:\NewFolder\123\dddd.jpg
c:\NewFolder\123\eeee\jjjj\nnnn\rrrr\wkw.mp4
please note that the main reason of the question is the copy/ move operation and not adding the column
Thank you
Regards
Add a column to display the rest of path for a certain search path
Re: Add a column to display the rest of path for a certain search path
Hello,
After some research I could do this:
path:regex:(123.+) add-column:A A-label:=Remainig A:=regmatch1:
but still can not figure out how to implement it in advanced copy/move to folder
Best Regards
After some research I could do this:
path:regex:(123.+) add-column:A A-label:=Remainig A:=regmatch1:
but still can not figure out how to implement it in advanced copy/move to folder
Best Regards
Re: Add a column to display the rest of path for a certain search path
In Advanced Copy/Move, check Regular expressions.
Set the old format to:
Set the new format to:
Set the old format to:
^(.*)\\123\\(.*)$
Set the new format to:
C:\\New Folder\\123\\$2:
Re: Add a column to display the rest of path for a certain search path
Great.
Thank you
Best Regards
Thank you
Best Regards