How to remove period from a string?

How to remove period from a string?, 7.0 out of 10 based on 1 rating
VN:F [1.9.7_1111]
Rating: 7.0/10 (1 vote cast)

How to remove period from a string?

for example: www.domainname.com

It needs to be ‘wwwdomainnamecom’

Solution:
$Newdomainname = ereg_replace(‘.’, ”, $domainname);
or
$Newdomainname = str_replace(‘.’, ”, $domainname);

No related Tech posts.

About the Author