如何从.txt文件中获取此信息?

时间:2017-12-21 21:46:09

标签: powershell

我有文本文件C:\ test \ test.txt。有3行3个信息。我想有一个脚本可以将它们分成3个不同的变量。

这就是文字的样子:

Screenshot of 3 lines of text ...

1 个答案:

答案 0 :(得分:1)

您可以将文件作为带Get-Content的数组导入变量,然后使用[] syntax定义每个变量。

$File = Get-Content C:\test\test.txt
$Time = $File[0]
$Number = $File[1]
$Text = $File[2]

请注意,有更好的方法来构建数据以便于导入。