如何将逗号添加到文本文件中一行的最后一个字符
我有一个很长的文本文件,其中充满了电子邮件地址,来自新闻通讯数据库的导出。要将它们导入到另一个系统中,我需要将这些地址用逗号分隔。
我正在尝试使用正则表达式进行搜索/替换。到目前为止,我可以使用 : 找到每行的最后一个字符,
[^\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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以搜索
([^\n])$
并将其替换为\1,
– 具体取决于您的正则表达式引擎。You could search for
([^\n])$
and replace it by\1,
– depending on your RegEx engine.看看 sed...
Look into sed...