Category: Development

  • Basic Powershell Parser

    Main 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

    Read more: Basic Powershell Parser