0 Pluspunkte 0 Minuspunkte

Kann ich ein Ergebnis in Powershell mit Regular Expressions filtern?

get-process | where-object { $_ -eq "(.*)ana(.*)" }
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Statt dem Operator "-eq" verwendest du "-match".

get-process | where-object { $_ -match "(.*)ana(.*)" }

von