You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| OutputClaim | The name of the localized string | string | List of claim types that is produced after this claims transformation has been invoked. |
368
+
| OutputClaim | The name of the localized string | string | List of claim types that are produced after this claims transformation has been invoked. |
369
369
370
370
To use the GetLocalizedStringsTransformation claims transformation:
371
371
@@ -611,13 +611,17 @@ Checks that a string claim `claimToMatch` and `matchTo` input parameter are equa
611
611
| inputClaim | claimToMatch | string | The claim type, which is to be compared. |
612
612
| InputParameter | matchTo | string | The regular expression to match. |
613
613
| InputParameter | outputClaimIfMatched | string | The value to be set if strings are equal. |
614
+
| InputParameter | extractGroups | boolean |[Optional] Specifies whether the Regex match should extract groups values. Possible values: `true`, or `false` (default). |
614
615
| OutputClaim | outputClaim | string | If regular expression is match, this output claim contains the value of `outputClaimIfMatched` input parameter. Or null, if no match. |
615
616
| OutputClaim | regexCompareResultClaim | boolean | The regular expression match result output claim type, which is to be set as `true` or `false` based on the result of matching. |
617
+
| OutputClaim| The name of the claim| string | If the extractGroups input parameter set to true, list of claim types that are produced after this claims transformation has been invoked. The name of the claimType must match the Regex group name. |
616
618
617
-
For example, checks whether the provided phone number is valid, based on phone number regular expression pattern.
619
+
### Example 1
620
+
621
+
Checks whether the provided phone number is valid, based on phone number regular expression pattern.
Checks that a string claim and `matchTo` input parameter are equal, and sets the output claims with the value present in `stringMatchMsg` and `stringMatchMsgCode` input parameters, along with compare result output claim, which is to be set as `true` or `false` based on the result of comparison.
0 commit comments