You can use findstr to filter names but it is simpler with PowerShell
For example, a test with some filters :
Show-NetFirewallRule | where {$_.DisplayName -Like "*Test*" -AND $_.Action -eq 'Block' -AND $_.Direction -eq "Inbound"} | select DisplayName