Identity Management through FIM

An Ex-MSFTie's thoughts

Posts tagged case insensitive

2 notes &

Correct syntax for case insensitive regular expressions in RCDC

Just noticed the documentation was incorrect for the RCDC in FIM.  Here’s what it hsould be 

 

Making regular expressions case insensitive

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)%

Filed under fim rcdc case insensitive regular expression