Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - amenu

Pages: [1]
1
Support and Feedback / Re: File find
« on: September 15, 2015, 07:42:39 »
I've looked at the Wikipedia article and have a sense of how RegEx works. Would not the second expression you gave:

Code: [Select]
(.*)(word1|word2)(.*)(word2|word1)(.*)

select the files I am looking for (files that have both word1 and word2 in any order in their filenames) but also select files with two occurrences of word1 and no occurrences of word2, or two occurrences of word2 and no occurrences of word1?

I am thinking ((.*)(word1)(.*)(word2)(.*))|((.*)(word2)(.*)(word1)(.*)) would give me just those files that have both word1 and word2 in any order in their filenames.

I am ready to be corrected, as I am obviously unschooled in RegEx.
-- Arthur

2
Support and Feedback / Re: File find
« on: September 15, 2015, 02:32:40 »
I am not familiar with RegEx codes. Where is there an instruction manual where I can learn how to use RegEx?
-- Arthur

3
Support and Feedback / File find
« on: September 14, 2015, 06:09:21 »
I just started using MC and am learning as I go along. I wanted to use file find to find filenames that had both of two words in them -- i.e., word1 and word2, not word1 or word2. I looked in the online documentation but did not see the answer. Where can I find this information.
-- Arthur

Pages: [1]