Is there a package or module for string handling functions?
Did anyone write a package or module for string handling?
what does this mean? do you have any concrete functionality on mind?
Base has lots of string functions. Also lots of extra string functionality in
1 Like
You know string functions like
lower() - to convert all characters into lower case.
upper() - to convert all characters to upper case.
replace() - to replace a particular in a string.(Actually creates a new string though).
Those are in Base
2 Likes
I think you want the Manual section:
https://docs.julialang.org/en/v1/manual/strings/
1 Like
Is there any document that i can download,
So that i don’t ask any more general questions?
For Complete reference ?
there’s pdf https://raw.githubusercontent.com/JuliaLang/docs.julialang.org/assets/julia-1.8.5.pdf
but why not just read the Manual chapter by chapter in the HTML?
1 Like