How to find the position of the first occurrence of a substring in a string with Swift

1 Answer

0 votes
import Foundation

let str = "I bought running shoes, but they started running alone, now we are both happy"
let substring = "running"

// Find the position of the first occurrence of a substring
if let position = str.range(of: substring)?.lowerBound {
    print(str.distance(from: str.startIndex, to: position))
} else {
    print(-1)
}


/*
run:

9

*/

 



answered Apr 21 by avibootz
...