why is the following not correct in asp.net? I'm trying to match all
subdomain names 'leon.domain.co m', but
not 'www.domain.com '?
Dim sdm As Regex
sdm = New Regex (?!www\.)(.*)\. domain\.com
subdomain names 'leon.domain.co m', but
not 'www.domain.com '?
Dim sdm As Regex
sdm = New Regex (?!www\.)(.*)\. domain\.com
Comment