我可以将变量插入到字符串中,以使用其他文本打印该值:
a = "sheriff";
println("Howdy, I'm the $a.")
Howdy, I'm the sheriff.
我需要内插数组元素的语法,我现在得到这个:
A = ["carb", "sheriff", "mumchance"]
println("Howdy, I'm the $A[2].")
Howdy, I'm the String["carb", "sheriff", "mumchance"][2].
答案 0 :(得分:1)
我发布此Q / A因为我花了太多时间寻找这个。
println("Howdy, I'm the $(A[2]).")
Julia中的字符串插值与unix shell类似。您可以通过将表达式括在括号中来插入表达式。