나는 [ PowerShell을 완전히 처음 사용하고 ] 루프에서 문자열을 연결하고 있습니다. 특별한 조건이 발생 하면 줄 바꿈을 삽입 해야합니다 . 어떻게해야합니까?
기본적으로 \n
.
$str = ""
foreach($line in $file){
if($line -Match $review){ #Special condition
$str += ANSWER #looking for ANSWER
}
#code.....
}
지금까지 나는 시도했다
"\n" '\n' "\N" '\N' "\r" '\r' "\R" '\R' '`n' '`r' '-n' '-r'
The term ' ' is not recognized as the name of a cmdlet, function, sc....