Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

IF there is one file for example test.config , this file contain work "WARN" between line 140 and 170 , there are other lines where "WARN" word is there , but I want to replace "WARN" between line 140 and 170 with word "DEBUG", and keep the remaining text of the file same and when saved the "WARN" is replaced by "DEBUG" between only lines 140 and 170 . remaining all text is unaffected.

share|improve this question

4 Answers

Look at $_.ReadCount which will help. Just as a example I replace only rows 10-15.

$content = Get-Content c:\test.txt
$content | 
  ForEach-Object { 
    if ($_.ReadCount -ge 10 -and $_.ReadCount -le 15) { 
      $_ -replace '\w+','replaced' 
    } else { 
      $_ 
    } 
  } | 
  Set-Content c:\test.txt

After that, the file will contain:

1
2
3
4
5
6
7
8
9
replaced
replaced
replaced
replaced
replaced
replaced
16
17
18
19
20
share|improve this answer
Interesting tip, I didn't know about this. – JasonMArcher May 18 '11 at 15:50
I think I saw that first in some comment/post/tweet by @ShayLevy. – stej May 18 '11 at 19:26
Stej your answer worked perfectly and it is excatly what I need – Janki May 19 '11 at 0:03
@Janki, nice to hear that in the morning :) If it works, you may accept the answer. – stej May 19 '11 at 4:17

Using array slicing:

$content = Get-Content c:\test.txt

$out = @()
$out += $content[0..139]
$out += $content[140..168]  -replace "warn","DEBUG"
$out += $content[169..($content.count -1)]
$out | out-file out.txt
share|improve this answer

This is the test file

text
text
DEBUG

DEBUG


TEXT

--

PS:\ gc .\stuff1.txt |% { [system.text.regularexpressions.regex]::replace($_,"WARN","DEBUG") }  > out.txt

Out.txt look like this

text text DEBUG

DEBUG

TEXT

share|improve this answer

Might be trivial but it does the job:

$content = gc "D:\posh\stack\test.txt"

$start=139
$end=169

$content | % {$i=0;$lines=@();}{
  if($i -ge $start -and $i -le $end){
   $lines+=$_ -replace 'WARN', 'DEBUG'
   }
  else
  {
    $lines+=$_
  }
  $i+=1
 }{set-content test_output.txt $lines}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.