使用 PowerShell 将文本添加到文本文件中的每一行

发布于 2024-10-16 20:43:14 字数 322 浏览 3 评论 0原文

我想在 .txt 文档中每行文本的末尾添加字符。

#Define Variables
$a = c:\foobar.txt
$b = get-content $a

#Define Functions
function append-text  
    {  
    foreach-Object  
        {  
        add "*"  
        }  
    }  

#Process Code
$b | append-text

类似的事情。本质上,加载给定的文本文件,在该文本文件中每行文本的末尾添加“*”,保存并关闭。

I'd like to add characters to the end of every line of text in a .txt document.

#Define Variables
$a = c:\foobar.txt
$b = get-content $a

#Define Functions
function append-text  
    {  
    foreach-Object  
        {  
        add "*"  
        }  
    }  

#Process Code
$b | append-text

Something like that. Essentially, load a given text file, add a "*" the the end of every single line of text in that text file, save and close.

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

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

发布评论

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

评论(4

顾挽 2024-10-23 20:43:14

不需要任何功能。这样就可以做到:

$b|foreach {$_ +  "*"}

No function necessary. This would do it:

$b|foreach {$_ +  "*"}
一笑百媚生 2024-10-23 20:43:14
PS> (gc c:\foobar.txt) -replace '\S+
,'
amp;*'
PS> (gc c:\foobar.txt) -replace '\S+
,'
amp;*'
短暂陪伴 2024-10-23 20:43:14

像这样的事情应该有效:

function append-text { 
  process{
   foreach-object {$_ + "*"}
    } 
  }

Soemthing like this should work:

function append-text { 
  process{
   foreach-object {$_ + "*"}
    } 
  }
送你一个梦 2024-10-23 20:43:14

只需大约 2 个小时就可以解决这个问题,之前从未使用过 Powershell,但是现在您可以:

cls
#Define Functions
(gc g:\foobar.txt) -replace '\S+

更改文件位置。第一个文件是您要编辑的文件。第二个是输出文件。

,'
amp; 1GB RAM 1x 1 GB Stick' | out-file "g:\ram 6400s.txt"

更改文件位置。第一个文件是您要编辑的文件。第二个是输出文件。

Simply took about 2 hours to work it out, had never used Powershell before, but here you go:

cls
#Define Functions
(gc g:\foobar.txt) -replace '\S+

Change the file location. First file is the file you want to edit. The secound one is the output file.

,'
amp; 1GB RAM 1x 1 GB Stick' | out-file "g:\ram 6400s.txt"

Change the file location. First file is the file you want to edit. The secound one is the output file.

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