sed example - delete a word from a string

Delete the word www. from string abcwww.dwdwdwwww.wdwdw:

echo  abcwww.dwdwdwwww.wdwdw | sed s/www\\.//g
The output will be:
abcdwdwdwwdwdw