如何操作文件中的列表?
我想获取一个文本文件,每行都有名称,例如:
名称 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以直接从命令行完成:
如果您确实在程序中需要它:
This can be done straight from command the line:
If you really need it in a program:
与@sidyll类似,但更短:
Similar to @sidyll's, but shorter: