I've searched for a fair amount for the answer but all I get is how I do it with multiple Strings. I'm pretty new to PowerShell but want to know how I can manage to do it.
I simply want to remplace the first occurence of "1" with "2" ... I only can close to it but no more. The code I found was:
Get-ChildItem "C:\TEST\1.etxt" | foreach {
$Content = Get-Content $_.fullname
$Content = foreach { $Conten -replace "1","2" }
Set-Content $_.fullname $Content -Force
}
The content of the txt is just random: 1 1 1 3 3 1 3 1 3 ... for keeping it simple.
Could someone please explain how I do it with the first occurence and if it is possible and not to time consuming how I can replace for example the 3rd occurrence?