Я [ повністю новачок у 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....