Excel电子邮件数据库替换功能
我有一个包含电子邮件地址和姓名的 Excel 数据库。我需要从电子邮件地址中提取域名,并将其放入新列中。
即:
col a: [email protected]
col b: www.email.com
其中 col a
是我当前拥有的,而 col b
是我的目标。我基本上需要删除 @
符号及其之前的所有内容,并替换为 www.
。
有什么方法可以在 Excel 中自动执行此操作吗?我使用的是 Excel 2008 for Mac。
I have an Excel database of email addresses and names. I need to extract the domain name from the email address, and put it into a new column.
i.e:
col a: [email protected]
col b: www.email.com
Where col a
is what I currently have, and col b
is my goal. I basically need to delete anything at and before the @
symbol, and replace with www.
.
Is there any way I can do this in Excel in an automated process? I am using Excel 2008 for Mac.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其放入 B1 列并一直向下拖动:
put this in column B1 and drag all the way down:
请尝试将 ColumnA 复制到 ColumnB,选择 ColumnB,然后替换为:
查找内容:
*@
替换为:
www.
全部替换。
Please try copying ColumnA to ColumnB, selecting ColumnB and then Replace with:
Find what:
*@
Replace with:
www.
Replace All.