Excel电子邮件数据库替换功能

发布于 2024-10-13 06:19:10 字数 450 浏览 3 评论 0原文

我有一个包含电子邮件地址和姓名的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦幻之岛 2024-10-20 06:19:10

将其放入 B1 列并一直向下拖动:

="www." & MID(A1,FIND("@",A1)+1,LEN(A1))

put this in column B1 and drag all the way down:

="www." & MID(A1,FIND("@",A1)+1,LEN(A1))
萌面超妹 2024-10-20 06:19:10

请尝试将 ColumnA 复制到 ColumnB,选择 ColumnB,然后替换为:

查找内容:*@
替换为:www.

全部替换

Please try copying ColumnA to ColumnB, selecting ColumnB and then Replace with:

Find what: *@
Replace with: www.

Replace All.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文