A basic regex pattern to match credit card numbers might look like this:
css
Copy
\b(?:\d{4}[- ]?){3}\d{4}\b
This regex pattern:
\d{4}: Matches exactly 4 digits.
[- ]?: Matches an optional space or hyphen between groups of digits.
\b: Asserts word boundaries to ensure the match is isolated and not part of a larger number.
Answer: Sensitive Information Types (SIT)
https://learn.microsoft.com/en-us/purview/dlp-policy-learn-about-regex-use
upvoted 2 times
...
This section is not available anymore. Please use the main Exam Page.SC-900 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
IT_Security_Team
3 months agoLegendaryZA
8 months ago