Search Results

0
votes

Find out subdomain using Regular Expression in PHP

The following regex would capture any string before a full stop (the subdomain) and the rest of the domain: ^([^.]+)\..*$ I don't see the need for regex to do this …