vote up 6 vote down star

In Powershell I'm reading in a text file. I'm then doing a Foreach-Object over the text file and am only interested in the lines that do NOT contain strings that are in $arrayOfStringsNotInterestedIn

Does anybody know the syntax for this?

   Get-Content $filename | Foreach-Object {$_}
flag

74% accept rate

4 Answers

vote up 6 vote down check

If $arrayofStringsNotInterestedIn is an [array] you should use -notcontains:

Get-Content $FileName | foreach-object { `
   if ($arrayofStringsNotInterestedIn -notcontains $_) { $) }

or better (IMO)

Get-Content $FileName | where { $arrayofStringsNotInterestedIn -notcontains $_}
link|flag
vote up 0 vote down

To exclude the lines that contain any of the strings in $arrayOfStringsNotInterestedIn, you should use:

(Get-Content $FileName) -notmatch [String]::Join('|',$arrayofStringsNotInterestedIn)

The code proposed by Chris only works if $arrayofStringsNotInterestedIn contains the full lines you want to exclude.

link|flag
vote up 1 vote down

You can use the -nomatch operator to get the lines that don't have the characters you are interested in.

 Get-Content $FileName | foreach-object { 
 if ($_ -nomatch $arrayofStringsNotInterestedIn) { $) }
link|flag
technet.microsoft.com/en-us/magazine/… – jms Sep 16 '08 at 17:54
Has anyone even tried this? When I try it the syntax is incorrect and it returns every line in the file. – OwenP Sep 16 '08 at 18:01
vote up 0 vote down

You can probably use -notmatch or -notlike in conjunction with each of the strings in your array.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.