CN=steffenr,OU=Users,OU=Accounts,DC=big-company,DC=comI need the part between the '=' and the first comma.
The naive approach in Ruby is
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
entry="CN=steffenr,OU=Users,OU=Accounts,DC=big-company,DC=com" | |
capture=entry.match(/CN=(.*),/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
entry="CN=steffenr,OU=Users,OU=Accounts,DC=big-company,DC=com" | |
capture=entry.match(/CN=((?:(?!,).)*)/) | |
capture[1]="steffenr" |
rubular.com offers an interactive console to debug a regexp. Voilá.