Category: Development
-
Basic Powershell Parser
Read more: Basic Powershell ParserMain Parser Usage $Query = “Status AND (User OR Admin)”$Parser = [Parser]::new($Query)$OutputTree = $Parser.ParseExpression() Display as JSON to see the nested structure clearly $OutputTree | ConvertTo-Json -Depth 10