Şu şekilde bir string var:
\\This is a \\test string
Ben bu iki slash \\
işaretini şöyle silmeye çalışıyorum ama sadece tekini siliyor. Ne yapmam lazım?
let test = \\This is a \\test string
test.replacingOccurrences(of: test, with: "")
Sonucun şöyle olması lazım:
This is a test string.