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.
我正在尝试理解 powershell 中的 XML 解析。
是什么$instance.'property.array'意思?
$instance.'property.array'
(考虑$instance引用一个元素。)为什么是单引号?它们意味着什么吗?
$instance
引号允许您引用包含点的元素名称。考虑以下 xml:
<root> <property.array> <element1 /> </property.array> <property> <array> <element2 /> </array> </property> </root>
要引用您将使用的第一个元素:
$instance.root.'property.array'
这将选择element1,同时:
$instance.root.property.array
会给你element2。