Regular Expressions 101

Community Patterns

Extract CN from DN (CanonicalName from DistinguishedName)

1

Regular Expression
PCRE (PHP <7.3)

/
(CN=)(.*?)(?<!\\),.*
/
gmi

Description

Given a DistinguishedName string, extracts the CN portion, coping with escaped characters

Submitted by anonymous - 8 years ago