Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在工作站上有主机文件,我需要读取特定行以获取 IP 地址。ip地址位置不同
这是我发现效果最好的线路。
获取内容主机 | 选择对象-Last 1
有什么方法可以解析特定单词的文本文件以读取和输出该 1 行?
如果您知道要查找的内容,下面将向您显示文件中的匹配行
Get-Content .\hosts | select-string 'searchstringhere' -SimpleMatch
好吧,您可以使用以下内容:
(Get-Content file.txt) -match '\d{1,3}(\.\d{1,3}){3}'
它应该匹配 IPv4 地址并产生出现的行。