regex - Regular Expressions: Get subdomain and domain -
in nginx, have line states ~^(www\.)(?<sub>.+).(?<domain>.+)$
.
how make can subdomain , domain separate? subdomain.example.com.
edit: tried ~^(www\.)?(?<sub>)\.?(?<domain>.+)$
, didn't work either.
you have escape .
~^(www\.)?(?<sub>.+?)\.(?<domain>.+)$
Comments
Post a Comment