拆分阵列并获得一定位置

发布于 2025-01-17 14:39:15 字数 522 浏览 0 评论 0原文

我想获得当前计算机的杰出名称。这有效:

Dim objSysInfo, objComp, arr, UCID 
Set objSysInfo = CreateObject("ADSystemInfo")

' Current computer
Set objComp = GetObject("LDAP://" & objSysInfo.ComputerName)


DN = objComp.distinguishedName

但是我只想将杰出名称的一部分保存在一个新变量中。

例如:杰出的名称是“ OU = X,OU = Y, OU = that ,dc = a,dc = b,dc = c”

i i仅需要“ that” 对于我的变量。它总是从右侧开始的第四位。

我该怎么做?我从此开始...

OU= Split (DN, ",") 

非常感谢!!!

I want to get the distinguished name of the current computer. That works:

Dim objSysInfo, objComp, arr, UCID 
Set objSysInfo = CreateObject("ADSystemInfo")

' Current computer
Set objComp = GetObject("LDAP://" & objSysInfo.ComputerName)


DN = objComp.distinguishedName

But I only want to save a part of the distinguished name in a new variable.

For example: The distinguished name is "OU=X, OU=Y, OU=THAT, DC=A, DC=B, DC=C"

I just need "THAT" for my variable. It is always on the fourth position beginning from the right side.

How do I do this? I started with this...

OU= Split (DN, ",") 

Thank you very much!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陪我终i 2025-01-24 14:39:15

如果您检查 Split 的文档,您将看到它返回一个数组(从零开始的索引)。因此,您需要在 , 上拆分并获取第三个元素(索引 2),然后在 = 上拆分该结果并获取第二个元素(索引 1):

OU = Split(Split(DN,",")(2),"=")(1)

If you check the documentation for Split, you will see that it returns an array (zero-based index). Therefore, you need to split on , and get the third element (index 2), and then split that result on = and get the second element (index 1):

OU = Split(Split(DN,",")(2),"=")(1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文