Contact: aviboots(AT)netvision.net.il
41,437 questions
53,984 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. */