I'm working with NET-LDAP API using Ruby on Rails:
@ldap.search( :base => @treebase, :filter => @filter ) do |entry|
entry.cn
When I get the entry.cn
value it comes formatted as ["example"]
How do I get this value without the characters [" "]
?