construct DN with groovy

51 Views Asked by At

I need to replace below code value with location value .

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

I am getting incorrect signature of the method as string definition consist "=" and "," symbols . any help ?

Thanks.

2

There are 2 best solutions below

0
On BEST ANSWER

No need go setting up the wrong string then use replace to make it right.

Just use templating to create the correct string. Ie:

String DN = "OU=Contractors,OU=Users,OU=$LOCATION,OU=Sites,DC=xyz,DC=com"
0
On
string str = "OU=Contractors,OU=Users,OU=Code,OU=Sites,DC=xyz,DC=com" ; 

Looks wrong. "string" is not a class. It must be String or def. Like below

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

or

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