( | Start of memory capture. |
[^\\] | A character class, matches any one of the listed characters; but a leading ^ negates to mean NOT any of the listed characters (i.e. NOT backslash). |
+ | 1 or more of the previous atom (i.e., one or more non-backslash characters). |
) | End of memory capture. |
\\ | A backslash character (which needs to be escaped, since \ is the escape char in RE. |
$ | Matches at the end of the line. |
I have a parent folder column in some panes views, and use the expression:
Regex([Filename (path)], /#([^\\]+)\\$#/, 1)
I'd like to know more about this, and add a hopefully simple question of my own.
First of all, where does the Regex script MrC posted go? I honestly have no idea what he's talking about.
Second, I don't use MC for images for one simple reason. Even though I have the image file location in Options set to my pictures folder and nothing else it still loads every piece of cover art and random screen captures and god knows what else, all of which are either in my music or video folders. So how do I get rid of all that and only show my own pictures?
Welcome to the forums...
Not a setting, no... but you have MC now, and with MC, just about anything imaginable is possible...
- Tools > Options > Library and folders > Manage Library Fields
- Add a new field. Name it appropriately... Parent Folder perhaps?
- Select the "Calculated Data" radio button and paste the brown txt below into the expression field
- =ListItem([Filename (path)],Math(ListCount([Filename (path)],\)-1),\)
- Keep pressing OK till you are out of options
You should now have a field called [Parent Folder] that you can use like any other field in your MC library.
-marko