텍스트 모양을 만드는 스크립트에서 "요약"텍스트 블록이 해당 blob 앞에 추가 될 수있는 지점이 있습니다.Powershell : 문자열이 다른 문자열에 두 번 이상 추가되었습니다.
스크립트는 요약 텍스트를 한 번만 생성하지만 텍스트 blob 앞에 여러 번 붙습니다.
이는 PowerShell 스크립트입니다 :
#
# Test_TextAppend.ps1
#
$reportMessage = "Body of Report Able Was I Ere I Saw Elba"; # build "report" text
$fruitList = [System.Collections.ArrayList]@();
$vegetableList = [System.Collections.ArrayList]@();
[void]$fruitList.Add("apple");
# Generate a "summary" that includes the contents of both lists
function GenerateSummary()
{
[System.Text.StringBuilder]$sumText = New-Object ("System.Text.StringBuilder")
$nameArray = $null;
[string]$nameList = $null;
if ($fruitList.Count -gt 0)
{
$nameArray = $fruitList.ToArray([System.String]);
$nameList = [string]::Join(", ", $nameArray);
$sumText.AppendFormat("The following fruits were found: {0}`n",
$nameList);
}
if ($vegetableList.Count -gt 0)
{
$nameArray = $vegetableList.ToArray([System.String]);
$nameList = [string]::Join(", ", $nameArray);
$sumText.AppendFormat("The following vegetables were found: {0}`n",
$nameList);
}
if ($sumText.Length -gt 0)
{
$sumText.Append("`n");
}
return ($sumText.ToString());
}
[string]$summary = (GenerateSummary);
if (![string]::IsNullOrEmpty($summary)) # if there is any "summary" text, prepend it
{
$reportMessage = $summary + $reportMessage;
}
Write-Output $reportMessage
그리고 이것은 그 실행 결과입니다 : 내가 인용구 대신 코드 블록을 사용
The following fruits were found: apple
The following fruits were found: apple
The following fruits were found: apple
Body of Report Able Was I Ere I Saw Elba
는 고정 폭 글꼴을 보여주기 때문에 여분의 선행 공백.
질문 : 요약 텍스트가 왜 단 한 번이 아닌 세 번 반복되는 이유는 무엇입니까?
그 나는 지금까지 고려하지 않았었다. StringBuilder 인스턴스의 Append 메서드를 호출하면 StringBuilder의 내용이 반환됩니다. 이들 문 앞에'[void]'를 넣으면 ToString()을 호출 한 결과 만 반환됩니다. – user1956801