Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Executing PowerShell code at the API level
#6
Parse variable names and variable values in the Powershell code
 
Code:
Copy      Help
// script "PS_variable values.cs"
/*/ r %folders.ProgramFiles%\PowerShell\7\System.Management.Automation.dll; /*/ //.
using System.Management.Automation.Language;
script.setup(trayIcon: true, sleepExit: true);
//..

string s = """
$Hash = @{
    Path       = "D:\\c.txt"
    Encoding   = 'UTF8'
}
$string = "hello"
$int = 888
"""
;

Token[] tokens;
ParseError[] errors;
var parsedCode = Parser.ParseInput(s, out tokens, out errors);

foreach (var ast in parsedCode.FindAll(astItem => astItem is AssignmentStatementAst, true))
{

    var assignmentAst = (AssignmentStatementAst)ast;
    if (assignmentAst.Left is VariableExpressionAst variableExpressionAst)
    {

        var variableName = variableExpressionAst.VariablePath.UserPath;
        var variableValueAst = assignmentAst.Right;
        var variableValue = variableValueAst.Extent.Text.Trim();
        Console.WriteLine($"variableName: {variableName}");
        Console.WriteLine($"variableValue: {variableValue}");
    }
}


Messages In This Thread
RE: Executing PowerShell code at the API level - by Davider - 03-19-2024, 04:24 AM

Forum Jump:


Users browsing this thread: 4 Guest(s)