Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用正则表达式清理一组功能等效的 gmail 地址。您可能知道 gmail hack,其中“brunette.thomas@gmail”被 gmail 视为“brunetteandrew@gmail”。人们通过在他们的电子邮件地址中添加句点来在抽奖中输入多个条目。
我需要将这些过滤到电子邮件地址的 alpha 部分,即转:
brunettethomas@gmail.com
进入:
与周期数无关。
谁能帮我这个?
您可以使用它来匹配 at 符号之前的所有句点:
\.(?=.*@)
然后你可以用空字符串全局替换它。这仅适用于支持前瞻的正则表达式方言(您尚未说明您正在使用哪种方言)。