5 lines
No EOL
218 B
PowerShell
5 lines
No EOL
218 B
PowerShell
function Write-ReplaceContentInFile([string]$Regex, [string]$Replacement, [string]$FilePath)
|
|
{
|
|
$content = (Get-Content $FilePath) -replace $Regex, $Replacement
|
|
[IO.File]::WriteAllLines($FilePath, $content)
|
|
} |