我对 powerscript 很陌生,我什至不知道要问的正确问题,所以我什至无法搜索我想象的常见问题。
我有:
$temp=$_|Select-String 'Game started at: (.*?)\n'
$timestamp=$temp.matches[0].groups[1].value
我试过了:
$timestamp=$_|Select-String 'Game started at: (.*?)\n'.matches[0].groups[1].value
和
$timestamp=$_|Select-String 'Game started at: (.*?)\n'|echo $_.matches[0].groups[1].value
这没有用。
如何正确地将两条线合二为一?