Найдите диапазон строки Swift

let string = "Please Click Here"
if let range = string.range(of: "Click") {
   print(range)

}
Quaint Quail