DEV Community

Discussion on: [Swift CODE] URLify

Collapse
 
thetealpickle profile image
✨ thetealpickle 📱 • Edited

Yeah in Swift 5 the syntax is pretty similar
string.replaceOccurrences(of: “ “, with: “%20”)

In everyday practice, I def use that method.

Typically in interviews, interviewers want to see whether the interviewee understands/can derive the algorithm which makes that method work (hence, all the code 😬🙃)