JuliaZoid

Your home for Julia programming articles on Medium! Share your Julia learnings, projects, and packages with the world. By the community, for the community!

Follow publication

The only way you should be splitting a String in Julia — Julia Base.split()

Logan Kilpatrick
JuliaZoid
Published in
6 min readSep 15, 2022

--

Image by Author

The basic split syntax 🖖

julia> my_string = "Hello.World""Hello.World"
julia> split_strings = split(my_string, ".")2-element Vector{SubString{String}}:"Hello""World"
julia> my_sentence = "Hello world. This is an extended example with more sentences to show what happens. I am going to add only a few more. Okay, last one. Wait, what is this?"
julia> split_sentences = split(my_sentence, ".")5-element Vector{SubString{String}}:"Hello world"" This is an extended example with more sentences to show what happens"" I am going to add only a few more"" Okay, last one"" Wait, what is this?"
julia> split_sentences = split(my_sentence)30-element Vector{SubString{String}}:"Hello""world.""This""is""what""is""this?"

Advanced split examples 🧗

julia> split_sentences = split(my_sentence, limit=10)10-element Vector{SubString{String}}:"Hello""world."..."with""more""sentences to show what happens." ⋯ 40 bytes ⋯ ", last one. Wait, what is this?"
julia> my_sentence = "Hello world. This is an extended example with more sentences to show what happens. I am going to add only a few more. Okay, last one. Wait, what is this? . . . . . . . . ........""Hello world. This is an extended example with more sentences to show what happens. I am going to add only a few more. Okay, last one. Wait, what is this? . . . . . . . . ........"
julia> split_sentences = split(my_sentence, ".", keepempty=false)13-element Vector{SubString{String}}:"Hello world"" This is an extended example with more sentences to show what happens"" I am going to add only a few more"" Okay, last one"" Wait, what is this? "..." "" "
julia> split_sentences = split(my_sentence, ".", keepempty=true)21-element Vector{SubString{String}}:"Hello world"" This is an extended example with more sentences to show what happens"" I am going to add only a few more"" Okay, last one"" Wait, what is this? "" """""

Base.rsplit( )— Starting from the end 🧵

julia> my_string = "Hello.World.This.Is.A.Test""Hello.World.This.Is.A.Test"
julia> a = split(my_string, ".")6-element Vector{SubString{String}}:"Hello""World""This""Is""A""Test"
julia> b = rsplit(my_string, ".")6-element Vector{SubString{String}}:"Hello""World""This""Is""A""Test"
julia> a == btrue
julia> a = split(my_string, "."; limit=2)2-element Vector{SubString{String}}:"Hello""World.This.Is.A.Test"julia> b = rsplit(my_string, "."; limit=2)2-element Vector{SubString{String}}:"Hello.World.This.Is.A""Test"julia> a == bfalse

Using eachsplit — Introduced in Julia 1️⃣.8️⃣

julia> a = "Ma.rch""Ma.rch"julia> split(a, ".")2-element Vector{SubString{String}}:"Ma""rch"julia> eachsplit(a, ".")Base.SplitIterator{String, String}("Ma.rch", ".", 0, true)
julia> collect(eachsplit(a, "."))2-element Vector{SubString}:"Ma""rch"

Wrapping things up 🎁

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in JuliaZoid

Your home for Julia programming articles on Medium! Share your Julia learnings, projects, and packages with the world. By the community, for the community!

Written by Logan Kilpatrick

Lead product for Google AI Studio, working on the Gemini API, and AGI. Ex-OpenAI.

Responses (1)

Write a response