Strings
Strings in Julia represent a finite sequence of characters. The default String
type consists of immutable sequence of UTF-8 codeunits.
This is a wiki experiment in building a friendly crowd sourced supplementary documentation for strings in Julia.
Current Official String Documentation
String literals
String construction
String manipulation
String concatenation
*(str_a, str_b, ...)
- concatenate strings together^(str, n)
- concatenate a repeated string together n timesjoin([io::IO,] iterator [, delim [, last]])
- concatenate multiple strings together with a delimiterstring(xs...)
- convert arguments to strings use theprint
function and concatenate the results.
AbstractString Interface
Low-level string manipulation
String packages
- JuliaStrings Github Organization
- InlineStrings.jl - Fixed-width string types of certain lengths
- ShortStrings.jl - This is an efficient string format for storing strings using integer types
- StaticStrings.jl - Fixed-width string types of any length
- LaTeXStrings.jl - Type LaTeX equations in string literals.