check str length swift code example
Example 1: Get the length of a String swift
var test1: String = "Scott"
test1.count
Example 2: find length of string in swift
let message = "Hello, World!"
// count length of a string
print(message.count) // 13Copied