Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
import Foundation var s = " swift python java php c c++ " print(s.count) // Length before trimming s = s.trimmingCharacters(in: .whitespaces) print(s.count) // Length after trimming print(s) /* run: 40 27 swift python java php c c++ */