Eu criei um script do PowerShell para editar vários arquivos xml em uma pasta, ele editará apenas o nó "description", mas por alguma razão o resultado final é que a '
entidade se tornou normal '
e o nó "cloneof" é dividido em duas linhas.
Get-ChildItem .\ *.xml -recurse | % {
echo "Editing file" $_.Name
$xml = [xml](Get-Content $_.fullname)
$xml.SelectNodes("//description") | ForEach-Object {
$string = $_.InnerText
if ($string -like "*(*") {
$string = $string.substring(0, $string.Indexof("(")-1)
if ($string -like '*,*')
{
$article = $string.Substring($string.LastIndexOf(','))
if ([string]$article -eq ", The") {
$string = $article.Substring(2) + " " + $string.Substring(0, $string.LastIndexOf(","))
}
elseif ([string]$article -eq ", A") {
$string = $article.Substring(2) + " " + $string.Substring(0, $string.LastIndexOf(","))
}
elseif ([string]$article -eq ", L'") {
$string = $article.Substring(2) + $string.Substring(0, $string.LastIndexOf(","))
}
elseif ([string]$article -like "*-*") {
$string = $article.Substring(2, $article.IndexOf("-")-2) + $string.Substring(0, $string.LastIndexOf(",")) + $article.substring($article.IndexOf("-")-1)
}
else {
echo "No article renaming needed for:"
echo $article
echo $string
}
}
}
$_.'#text' = $string
}
$xml.save($_.FullName)
}
algumas ideias? teoricamente o restante do arquivo permanecerá intocado, certo?
o XML está cheio de seções como este XML ORIGINAL
<game name="Addams Family, The - Pugsley's Scavenger Hunt (USA)" index="" image="">
<description>Addams Family, The - Pugsley's Scavenger Hunt (USA)</description>
<cloneof></cloneof>
<crc>6B8D777D</crc>
<manufacturer>Ocean</manufacturer>
<year>1993</year>
<genre>Platform</genre>
<rating>Other - NR (Not Rated)</rating>
<enabled>Yes</enabled>
</game>
XML EDITADO
<game name="Addams Family, The - Pugsley's Scavenger Hunt (USA)" index="" image="">
<description>The Addams Family - Pugsley's Scavenger Hunt</description>
<cloneof>
</cloneof>
<crc>6B8D777D</crc>
<manufacturer>Ocean</manufacturer>
<year>1993</year>
<genre>Platform</genre>
<rating>Other - NR (Not Rated)</rating>
<enabled>Yes</enabled>
powershell
Moreno
fonte
fonte
'
mudou? Um regular'
é bom em XML. Além disso, não o vejo no seu exemplo, nem entendo para que servem os resultados<cloneof>
. Parece tudo muito bem para mim ... (Talvez adicionar algum pequeno "antes", "depois" e "esperado" exemplos?)<cloneof>
sempre vazio no arquivo original quando dividido em duas linhas?