powershell: how to evaluate a string read from a f

2019-02-08 04:26发布

问题:

file a.txt is:

delete from test_$suffix

$a=get-content a.txt

$suffix="tableA"

how to manipulate the variable to set it as

delete from test_tableA

回答1:

$a=get-content a.txt
$suffix="tableA"

$ExecutionContext.InvokeCommand.ExpandString($a)


回答2:

Invoke-Expression is the equivalent.

$strExpression = "5 + 5 -eq 10"
Invoke-Expression $strExpression
True

See http://technet.microsoft.com/en-us/library/ee176880.aspx for more information.



回答3:

Here's one way. Variables in a double-quoted here-string get substituted automatically. Just be sure your input file conforms to the PS rules for here-strings.

 function convertto-herestring { 
 begin {$temp_h_string = '@"' + "`n"} 
 process {$temp_h_string += $_ + "`n"} 
 end { 
     $temp_h_string += '"@' 
     iex $temp_h_string 
     } 
 } 

 $suffix = "tableA"

 get-content testfile.txt

 delete from test_$suffix

 get-content testfile.txt | convertto-herestring

 delete from test_tableA