用 groovy 构建 DN

construct DN with groovy

我需要用位置值替换下面的代码值。

string str = "OU=Contractors,OU=Users,OU=Code,OU=Sites,DC=xyz,DC=com" ; 
DN = str.replaceAll( "Code" , LOCATION ) ;

我得到的方法签名不正确,因为字符串定义包含“=”和“,”符号。有帮助吗?

谢谢。

string str = "OU=Contractors,OU=Users,OU=Code,OU=Sites,DC=xyz,DC=com" ; 

看起来不对。 "string" 不是 class。它必须是 Stringdef。喜欢下面

 String str = "OU=Contractors,OU=Users,OU=Code,OU=Sites,DC=xyz,DC=com" ; 

 def str = "OU=Contractors,OU=Users,OU=Code,OU=Sites,DC=xyz,DC=com" ; 

无需去设置错误的字符串然后使用替换来改正。

只需使用模板创建正确的字符串。即:

String DN = "OU=Contractors,OU=Users,OU=$LOCATION,OU=Sites,DC=xyz,DC=com"