Group Attribute Statement Regex Filter

I am trying to configure a SAML app and I have 2 category of groups: like “IT-%” and the other “CS-%”. Could you please help me how I can get all the groups which starts with either “IT-” or “CS-” using Regex?

Hi @shjaiswal

You can try something like the following to match all groups starting with IT- and CS-

^IT-(.*)*|CS-(.*)*$

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.