0Pricing
Swift Academy · Lesson

Replacing and Splitting Text

Transform strings using regex operations.

Replacing and Splitting Text is a free Swift Academy lesson on CoddyKit — lesson 4 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Swift Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Replacing and Splitting

Regex is not only for matching. Swift strings can replace matched text and split on a pattern, transforming strings without manual loops.

replacing(_:with:)

replacing(_:with:) returns a new string where every match of the pattern is swapped for the replacement text.

let s = "a1b2c3"
let cleaned = s.replacing(/\d/, with: "*")
print(cleaned)

Replacing Whole Words

The pattern can be any regex, so you can replace all runs of digits at once with a single replacement.

let s = "order 1234 done"
let masked = s.replacing(/\d+/, with: "#")
print(masked)

Mutating with replace

replace(_:with:) modifies a var string in place rather than returning a copy.

var text = "hello world"
text.replace(/o/, with: "0")
print(text)

Replacing with a Closure

The replacing(_:with:) closure form receives each match and returns the replacement, enabling computed substitutions.

let s = "a1 b2 c3"
let result = s.replacing(/\d+/) { match in
    String((Int(match.0) ?? 0) * 10)
}
print(result)

Using Captures in Replacement

Inside the closure you can read capture groups from the match to build the replacement text.

let s = "2024-05"
let out = s.replacing(/(\d+)-(\d+)/) { m in
    "\(m.2)/\(m.1)"
}
print(out)

split(separator:)

Strings support split(separator:) with a regex, breaking the string wherever the pattern matches.

let csv = "a,b;c,d"
let parts = csv.split(separator: /[,;]/)
print(parts)

Splitting on Whitespace

A common task: split a string into words on any run of whitespace using /\s+/.

let line = "the   quick  brown"
let words = line.split(separator: /\s+/)
print(words.count)
print(words)

Limiting Splits

The maxSplits parameter caps how many splits occur, keeping the remainder intact.

let s = "a-b-c-d"
let parts = s.split(separator: /-/, maxSplits: 1)
print(parts)

Trimming and Replacing

Combine operations: replace unwanted patterns, then split, to clean and tokenize input in a pipeline.

let raw = "  one,, two ,,three "
let cleaned = raw.replacing(/,+/, with: ",")
let items = cleaned.split(separator: ",").map { $0.trimmingCharacters(in: .whitespaces) }
print(items)

replacing vs replacingOccurrences

The regex replacing works on patterns; the older replacingOccurrences(of:with:) only handles literal substrings. Prefer the regex form for pattern-based edits.

let s = "cat hat bat"
print(s.replacing(/[ch]at/, with: "X"))

Quick Check

What does "a1b2".replacing(/\d/, with: "-") produce?

Recap

You can replace matches with replacing(_:with:) (string or closure form) and the in-place replace, and split strings on a regex with split(separator:) plus maxSplits. These turn regex into a full text-transformation toolkit.

Frequently asked questions

Is the “Replacing and Splitting Text” lesson free?

Yes — the full text of “Replacing and Splitting Text” is free to read here on the web, and the Swift Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Swift Academy course, upgrade to CoddyKit PRO.

What will I learn in “Replacing and Splitting Text”?

Transform strings using regex operations. You practise Swift Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Swift Academy?

No prior experience is required. Swift Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 4 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Replacing and Splitting Text” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Swift Academy lesson?

Yes. Every Swift Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Regex Literals and Matching
  2. Capturing Groups
  3. RegexBuilder DSL
  4. Replacing and Splitting Text
← Back to Swift Academy