Skip to content

Instantly share code, notes, and snippets.

@Caul58
Last active December 21, 2024 10:55
Show Gist options
  • Save Caul58/6f1a1ac3cad7dda18eab47e9aa08850e to your computer and use it in GitHub Desktop.
Save Caul58/6f1a1ac3cad7dda18eab47e9aa08850e to your computer and use it in GitHub Desktop.
How to fetch an String from an AttributedString in Swift?

Two options arround AttributedString.CharacterView:

First option:

This option has a performance pitfall, cause it's using a for-in to iterate in characters.

let str: String = String(attrStr.characters)

Second option:

This option has a complexity O(n), in practice is faster than the previous.

let str: String = String(attrStr.characters[...])

source: Swift forum

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment