My problem is this..
I have a string, "uniqueMember=cn=HK ILP Group,ou=groups,dc=yyy,dc=com". I need to extract the string HK ILP Group from this. I have tried multiple delimiters but nothing gives this back. Help please!
String split issue
Moderator: DosItHelp
Re: String split issue
Code: Select all
set "string=uniqueMember=cn=HK ILP Group,ou=groups,dc=yyy,dc=com"
for /f "tokens=3 delims==," %%a in ("%string%") do echo %%a