如何操作文件中的列表?

发布于 2024-12-20 20:22:06 字数 358 浏览 1 评论 0原文

我想获取一个文本文件,每行都有名称,例如:

名称 1
姓名 2
姓名 3
等等

,并将它们准备为以下格式的 Android 数组:

<item>Name 1</item>
<item>Name 2</item>
<item>Name 3</item>
<item>etc.</item>

该数组很长,超过 1000 个项目。现在,我意识到我本质上是在要求某人为我编写代码。我曾经对perl有点精通,但已经失去了联系。

有没有 Perl 专家不介意帮助我解决这个问题?

I want to take a text file with names on each line, such as:

Name 1
Name 2
Name 3
etc.

and prepare them for an Android array of the format:

<item>Name 1</item>
<item>Name 2</item>
<item>Name 3</item>
<item>etc.</item>

The array is very long, over 1000 items. Now, I realize that I'm essentially asking someone to write code for me. I used to be somewhat proficient in perl, but have lost touch with it.

Are there any perl gurus out there who wouldn't mind assisting me with this?

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

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

发布评论

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

评论(2

白芷 2024-12-27 20:22:06

这可以直接从命令行完成:

perl -ne 'chomp; print "<item>$_</item>\n"' oldfile > newfile

如果您确实在程序中需要它:

while (<>) {
    chomp;
    print "<item>$_</item>\n";
}

This can be done straight from command the line:

perl -ne 'chomp; print "<item>$_</item>\n"' oldfile > newfile

If you really need it in a program:

while (<>) {
    chomp;
    print "<item>$_</item>\n";
}
碍人泪离人颜 2024-12-27 20:22:06

与@sidyll类似,但更短:

perl -lpe '$_="<item>$_</item>"' oldfile > newfile

Similar to @sidyll's, but shorter:

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