I have the following string:
'iamgood@yahoo.com, cc.a@est.gov.cn, j_193@ywuancjds.com, super.hard.bb@ililsa.bi'
I want to extract com, gov, com, bi
.
I wrote (?<=@)\w+
regex, but it turn out to extract yahoo,est,ywuancjds,ililsa
. I don't know how to include the vocabulary behind @
.