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.
我有大量这种格式的行:
9;"1258923865";"94.193.26.109";"name@email.com"
我正在尝试删除除电子邮件之外的所有内容。
我知道有一些正则表达式可以做到这一点。
此正则表达式应符合您的要求。
^.+;
由于+数量是贪婪的,它将匹配整行。然后它将回溯到足以让最后一个分号匹配。您最终会保留双引号和其中的电子邮件完整无缺。