2016-09-13 6 views
0

텍스트 모양을 만드는 스크립트에서 "요약"텍스트 블록이 해당 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 

는 고정 폭 글꼴을 보여주기 때문에 여분의 선행 공백.

질문 : 요약 텍스트가 왜 단 한 번이 아닌 세 번 반복되는 이유는 무엇입니까?

답변

3

읽기 about_Return :

자세한 설명

귀환 키워드는 함수, 스크립트 또는 스크립트 블록을 종료합니다. 은 특정 지점에서 범위를 종료하거나 값을 반환하거나 범위 끝에 도달했음을 나타내는 데 사용할 수 있습니다.

C 또는 C#과 같은 언어에 익숙한 사용자는 범위를 벗어나는 논리를 만들기 위해 Return 키워드를 사용합니다. 각 문장의 Windows PowerShell을에서

, 결과도 반환 키워드가 포함 된 문없이 출력로 을 반환됩니다. C 또는 C#과 같은 언어는 Return 키워드로 지정된 값만 반환합니다. 모두 다음 세 문장에서

결과는 함수의 출력을 구성 :

$sumText.AppendFormat("The following fruits were found: {0}`n", $nameList); 

    $sumText.Append("`n"); 

return ($sumText.ToString()); 

(그리고 다음 문장뿐만 아니라 경우 $vegetableList.Count -gt 0에서) : 미묘한하지만 중요한 차이점은

$sumText.AppendFormat("The following vegetables were found: {0}`n", $nameList); 
+0

그 나는 지금까지 고려하지 않았었다. StringBuilder 인스턴스의 Append 메서드를 호출하면 StringBuilder의 내용이 반환됩니다. 이들 문 앞에'[void]'를 넣으면 ToString()을 호출 한 결과 만 반환됩니다. – user1956801