Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
21,815 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
If the output should be "aasija" for "abhishek.asija" as test input, the Regex pattern is defined as:
^((?i)[a-z])((?i)[a-z]+).((?i)[a-z]+)$
The breakdown of this pattern is:
^((?i)[a-z])
: Captures the first letter of the first part of the input.((?i)[a-z]+)
: Captures the remaining letters of the first part of the input.\.
: Matches the literal dot separating the two parts.((?i)[a-z]+)$
: Captures the letters of the second part of the input.what should be the replacement pattern so that required groups are sent out as output