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