doggod wrote: 
> Hi, from yours "I never used this option", which one of my two examples
> do you mean you've never used?
> 
> 

I was referring to the 'ignoreDirRE' option, but actually I never used
any of your options. :)

doggod wrote: 
> 
> My problem with the plug-in is that I haven't a clue what is a "regular
> expression" and what to do with it. I tried to figure it out looking at
> that site you mentioned (it's also mentioned in the explanatory text for
> the plug-in). I would really like to learn and understand things that
> are new to me. From reading the explanatory text > ;
> 

In short, a regular expression is a string of characters of which some
have special meanings and some are just used literally. It allows
checking for a (partial) match in an input string. So something like the
wildcards * and ? for file and folder names in Windows but much more
powerful. Since they are easy to handle in a program, developers usually
love them but since they are sometimes hard to get it right, users often
hate them. :)

Try it like bpa suggested, but I think you could do it without the
slash, so 
Code:
--------------------
    ignoreDirRE: 'Y = OK'
--------------------


The 'Y = OK' here is the regular expression used to find a mach in the
folder paths. In this case it's just used literally since it doesn't
contain characters with special meaning for the regular expression.


------------------------------------------------------------------------
reinholdk's Profile: http://forums.slimdevices.com/member.php?userid=36070
View this thread: http://forums.slimdevices.com/showthread.php?t=112642

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to