LANCommander/LANCommander/Snippets/Functions/Write-ReplaceContentInFile.ps1
2023-01-26 20:42:33 -06:00

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)
}