convert all the letters of a string to lowercase in swift code example
Example: how to low case string swift
let str = "Sunday, Monday, Happy Days"
print(str.lowercased())
let str = "Sunday, Monday, Happy Days"
print(str.lowercased())