# New to julia : ldapclient output format

**URL:** https://discourse.julialang.org/t/new-to-julia-ldapclient-output-format/96497
**Category:** New to Julia
**Tags:** ldap
**Created:** [March 23, 2023, 8:43am UTC](https://discourse.julialang.org/t/new-to-julia-ldapclient-output-format/96497 "2023-03-23T08:43:45Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Laurent\_Protois](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/laurent_protois/32/47985_2.png) [@Laurent\_Protois](https://discourse.julialang.org/u/Laurent_Protois)
#### Post date: [March 23, 2023, 8:43am UTC](https://discourse.julialang.org/t/new-to-julia-ldapclient-output-format/96497/1 "2023-03-23T08:43:46Z")

</div>

In my Julia script :

for entry in LDAPClient.each\_entry(chain)  
uid=“(entry["uid"])" nom="(entry[“gecos”])”  
group=“$(entry[“GTP”])”  
println(“$uid;$nom;$group”)  
end

got [“waynstar84”];[“wayne stark”];[“-”]

how to change the output format ?

---

<div class="post-metadata">

### Author: ![nilshg](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nilshg/32/2283_2.png) [@nilshg](https://discourse.julialang.org/u/nilshg)
#### Post date: [March 23, 2023, 9:52am UTC](https://discourse.julialang.org/t/new-to-julia-ldapclient-output-format/96497/2 "2023-03-23T09:52:56Z")

</div>

Please read

> [@Please read: make it easier to help you](https://discourse.julialang.org/t/please-read-make-it-easier-to-help-you/14757):
>
> Welcome to the Julia Discourse! We are enthusiastic about helping Julia programmers, both beginner and experienced. This public service announcement (PSA) outlines best practices when asking for help. Following these points makes it easier for us to help you and more likely you’ll get a prompt, useful answer. Keywords are highlighted to make it easier to refer to specific points. Choose a descriptive title that captures the key part of your question, eg “plots with multiple axes” instead of …

In particular the points about providing a runnable example and quoting your code in triple backticks `````. In this instance I think it would also be good if you could give details on the expected output.
