Powershell:.txt 文件内数据的前缀字符串

发布于 2024-10-02 12:24:14 字数 134 浏览 0 评论 0原文

您好,我对 Powershell 完全陌生,所以如果这个问题有一个非常简单的答案,请原谅我。

我想使用 Powershell 来查看文本文件,获取所有值和前缀,并用字符后修复这些值。

这怎么能做到呢?

谢谢

Hi I'm completely new to Powershell so pardon me if this question has a really simple answer.

I would like to use Powershell to look thru a textfile, get all values and prefix and post fix these values with a character.

How can this be done?

Thanks

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

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

发布评论

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

评论(1

方圜几里 2024-10-09 12:24:14

要向文件的每一行添加前缀和后缀(使用默认命令别名,这会短很多,但全名更清晰):

get-content input-file | `
    foreach-object -process { "Prefix" + $_ + "Suffix" } | `
    out-file output-file

-encoding UTF8 添加到 out-file 覆盖默认编码 (UTF-16)。

要就地执行此操作,output-file 需要是一个临时文件,然后在处理完成后替换input-file 或将输入文件读入内存。

To add a prefix and suffix to each line of a file (with default command aliases this would be a lot shorter, but full names are clearer):

get-content input-file | `
    foreach-object -process { "Prefix" + $_ + "Suffix" } | `
    out-file output-file

Add -encoding UTF8 to the out-file to override the default encoding (UTF-16).

To do this in place output-file will need to be a temporary file and then replace the input-file after the processing has completed or read the input file into memory.

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