gpt4 book ai didi

perl - 在 Perl 中将文件转换为字符串的最佳方法是什么?

转载 作者:行者123 更新时间:2023-12-03 06:08:19 25 4
gpt4 key购买 nike

是的,There's More Than One Way To Do It但必须有一个规范的或最有效的或最简洁的方法。我将添加我所知道的答案,看看哪些内容会渗透到顶部。

需要明确的是,问题是如何最好地将文件的内容读取到字符串中。每个答案一个解决方案。

最佳答案

这个怎么样:

use File::Slurp;
my $text = read_file($filename);

预计到达时间:备注Bug #83126 for File-Slurp: Security hole with encoding(UTF-8) 。我现在推荐使用File::Slurper (免责声明:我写的),还因为它在编码方面有更好的默认值:

use File::Slurper 'read_text';
my $text = read_text($filename);

Path::Tiny :

use Path::Tiny;
path($filename)->slurp_utf8;

关于perl - 在 Perl 中将文件转换为字符串的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/206661/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com