Powershell - 连接字符串

时间:2012-10-23 14:15:25

标签: powershell lines

我尝试解析一些文本文件,最后我需要从2行创建1行:

19.10.2012 15:33:22<TAB here!>
textline<TAB here!>#1
19.10.2012 15:33:13<TAB here!>
textline<TAB here!>#2
19.10.2012 15:29:29<TAB here!>
textline<TAB here!>#3
19.10.2012 15:29:23<TAB here!>
textline<TAB here!>#4

在输出中我需要这个:

19.10.2012 15:33:22<TAB here!>textline<TAB here!>#1
19.10.2012 15:33:13<TAB here!>textline<TAB here!>#2
19.10.2012 15:29:29<TAB here!>textline<TAB here!>#3
19.10.2012 15:29:23<TAB here!>textline<TAB here!>#4

请帮帮我! :)

编辑:这就是我所拥有的:

Get-ChildItem $Path -Recurse -Include *.* | Foreach-Object {$_.FullName} |
Foreach-Object {
    Write-Host $_
    $Item = Get-Item $_
        (Get-Content $_ -ReadCount 2 -Encoding UTF8) | Foreach-Object {
        (-join $_)}} | Set-Content $Item -Encoding UTF8

2 个答案:

答案 0 :(得分:3)

Get-Content test.txt -ReadCount 2 | 
Foreach-Object { (-join $_) -replace '<TAB here!>',"`t" }

答案 1 :(得分:0)

单向:

$g = @()
$a = gc .\yourTXTfile.txt

for ($i=0; $i -lt $a.count ; $i+=2)
{ $g += $a[$i]+$a[$i+1] }

$g | set-content .\yournewTXTfile.txt