Open In App

Join an array of strings into a single string in Julia – join() Method

The join() is an inbuilt function in julia that is used to join an array of strings into a single string. The specified delimiter is used to insert in between the returned strings.
 

Syntax: 



join([io::IO, ] strings, delim, last) 

Parameters: 

Returns: It returns a new single string. 
 
Example 1: 






# Julia program to illustrate
# the use of String join() method
 
# Joining an array of strings into a single string.
println(join(["Geeks", "for", "Geeks"]))
println(join(["Geeks", "for", "Geeks"], "-"))
println(join(["Geeks", "for", "Geeks"], "+"))
println(join(["Geeks", "for", "Geeks"], "-", "+"))
println(join(["Geeks", "for", "Geeks", "is", "CSE", "portal"], "-", "+"))

Output:  

GeeksforGeeks
Geeks-for-Geeks
Geeks+for+Geeks
Geeks-for+Geeks
Geeks-for-Geeks-is-CSE+portal

Example 2: 




# Julia program to illustrate
# the use of String join() method
 
# Joining an array of strings into a single string.
println(join(["1", "2", "3"]))
println(join(["1", "2", "3"], "-"))
println(join(["1", "2", "3"], "+"))
println(join(["1", "2", "3"], "-", "+"))
println(join(["1", "2", "3", "4", "5", "6"], "-", "+"))

Output:  

123
1-2-3
1+2+3
1-2+3
1-2-3-4-5+6

 


Article Tags :