Convert array to string and separate each element with underscore

Hi I am trying to convert one array, like A=[“a”, “b”, “c”] into one string, like str=“a_b_c”. I am wondering, in Julia, how can we get it. Thanks

join(A, "_")

Thank you!

1 Like