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

Popular posts from this blog

SQL php on different pages to Insert (mysqli) -

php - How can an email be returned from Stripe Checkout? -

sql - Partition elimination in Greenplum -