Skip to content

Instantly share code, notes, and snippets.

@StewartLynch
Last active June 3, 2025 13:34
Show Gist options
  • Save StewartLynch/977b90d2db18384ddcacf444902d8702 to your computer and use it in GitHub Desktop.
Save StewartLynch/977b90d2db18384ddcacf444902d8702 to your computer and use it in GitHub Desktop.
KeyWord Extraction Playground for Localizations Video
import UIKit
var Words = """
"""
var keyWords: String {
Words.replacingOccurrences(of: " : {", with: "")
.replacingOccurrences(of:" \"", with: "")
.replacingOccurrences(of: "\"\n\n },", with: "")
.replacingOccurrences(of: "\"\n\n }", with: "")
}
print(keyWords)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment