Posts tagged rcdc
Posts tagged rcdc
2 notes &
Just noticed the documentation was incorrect for the RCDC in FIM. Here’s what it hsould be
In FIM 2010, it can be helpful to make some regular expressions case insensitive. You can ignore case within a group by using ?!:. For example, for Employee Type, use the following:
^(?i:contractor|full time employee)$
The incorrect version was ^(?!:contractor|full time employee)%