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 ?
nilshg
March 23, 2023, 9:52am
2
Please read
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.