Is there any existing function that looks for the index of a substring inside another string? A method like .indexOfSubstring
thank does this:
let word: String = "Hey there, how are you?"
let indexOf: Int = word.indexOfSubstring("ere, how are")
println("index = " + \(indexOf))
and prints:
index = 6
You can use the
rangeOfString
method:It returns a range, i.e. both sides of the searched string - just use the
startIndex
property.Note that this is a method borrowed from
NSString