Contact: aviboots(AT)netvision.net.il
41,565 questions
54,185 answers
573 users
import Foundation let str = "In the beginning there was nothing, which exploded." let titleCaseString = str.capitalized print(titleCaseString) /* run: In The Beginning There Was Nothing, Which Exploded. */