Contact: aviboots(AT)netvision.net.il
39,009 questions
50,723 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++ */