I have a string and want to retrieve a substring found within a specific range.
// String literal let s = "Hello World" // Get the substring from position 6 // to the end: 'World' let sub = s[s.startIndex.advancedBy(6)..<s.endIndex] print(s)
* Please let us know about anything: issues/feature request/suggestions......And we'll do our best to get back to you asap! :)
Or just post your issue on iSwift's Official Issue Tracker