Strings
Strings
-
length(s)
-
The number of characters in string
s
.
-
sizeof(s::AbstractString)
-
The number of bytes in string
s
.
-
*(s, t)
-
Concatenate strings. The
*
operator is an alias to this function.julia> "Hello " * "world" "Hello world"
-
^(s, n)
-
Repeat
n
times the strings
. Therepeat
function is an alias to this operator.julia> "Test "^3 "Test Test Test "
-
string(xs...)
-
Create a string from any values using the
pr