enh(powershell/updates): Substituion of special charactere for Fr, Es,… (#4872)

This commit is contained in:
THEPAUT 2024-03-26 06:43:58 -04:00 committed by GitHub
parent 44300357c3
commit 444066f78a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ Try {
Foreach ($update in $updates) {
$item = @{
title = $update.Title;
title = $update.Title.Normalize([Text.NormalizationForm]::FormD) -replace "\p{M}", "" -replace "\p{Z}", " ";
isMandatory = $update.IsMandatory;
}