如何将逗号添加到文本文件中一行的最后一个字符

发布于 2024-11-08 17:13:37 字数 278 浏览 0 评论 0原文

我有一个很长的文本文件,其中充满了电子邮件地址,来自新闻通讯数据库的导出。要将它们导入到另一个系统中,我需要将这些地址用逗号分隔。

我正在尝试使用正则表达式进行搜索/替换。到目前为止,我可以使用 : 找到每行的最后一个字符,

[^\n]$

这就是我的“搜索”字段。但我不知道要在“替换”中放入什么。我对正则表达式非常陌生,是否有一个通配符可以允许执行以下操作:

[any characted found],

I have a very long text file full of email adresses, from an export of a newsletter db. To import them in another system I need to have these adresses separated by a comma.

I'm trying to do a search/replace using regex. So far I can find the last character of each line with :

[^\n]$

So that's for my "Search" field. But I don't know with what to put into "Replace". I'm very new to regex, is there a wildcard that would allow to do something like :

[any characted found],

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

小姐丶请自重 2024-11-15 17:13:37

您可以搜索 ([^\n])$ 并将其替换为 \1, – 具体取决于您的正则表达式引擎。

You could search for ([^\n])$ and replace it by \1, – depending on your RegEx engine.

烙印 2024-11-15 17:13:37

看看 sed...

sed 's/$/,/' filename

Look into sed...

sed 's/$/,/' filename
情定在深秋 2024-11-15 17:13:37
perl -pe 's/$/,/'⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠ ⁠⁠⁠⁠⁠ ⁠⁠⁠⁠⁠ 
perl -pe 's/$/,/'⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠ ⁠⁠⁠⁠⁠ ⁠⁠⁠⁠⁠ 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文