Last active
June 3, 2025 13:34
-
-
Save StewartLynch/977b90d2db18384ddcacf444902d8702 to your computer and use it in GitHub Desktop.
KeyWord Extraction Playground for Localizations Video
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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