-
Notifications
You must be signed in to change notification settings - Fork 3
ConditionNotMatch
Søren Granfeldt edited this page Dec 1, 2016
·
1 revision
This condition can be used to check the value of a metaverse attribute against a regular expression pattern. The name of the metaverse attribute to check is specified in the MVAttribute tag (see sample below) and the regular expression pattern is specified in the Pattern tag (see sample below)
If the value of the metaverse attribute does not match the regular expression pattern, the condition is met.
<ConditionBase xsi:type="ConditionNotMatch">
<Description>All non-interns personnel</Description>
<MVAttribute>accountName</MVAttribute>
<Pattern>^INT</Pattern>
</ConditionBase>