Powershell:.txt 文件内数据的前缀字符串
您好,我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要向文件的每一行添加前缀和后缀(使用默认命令别名,这会短很多,但全名更清晰):
将
-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):
Add
-encoding UTF8
to theout-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 theinput-file
after the processing has completed or read the input file into memory.