我得到I\\U00b4m
,以取代I'm
。如何從字符串解碼或替換這個\\U00b4
?我需要刪除這使用編碼或解碼或替換刪除\ U00b4從字符串
I\\U00b4m looking for the only one man in my life.
我得到I\\U00b4m
,以取代I'm
。如何從字符串解碼或替換這個\\U00b4
?我需要刪除這使用編碼或解碼或替換刪除\ U00b4從字符串
I\\U00b4m looking for the only one man in my life.
簡單的方法:在這裏
let aString = "This is my string"
let newString = aString.replacingOccurrences(of: "\U00b4", with: "", options: .literal, range: nil)
請[編輯]你的問題,並提供更多的背景和相關的代碼。你從哪裏得到這個字符串? – rmaddy
看起來像[golden oldie](http://stackoverflow.com/questions/24318171) – marabu
[使用Swift來避開unicode字符,例如\ u1234](http://stackoverflow.com/questions/24318171/使用swift-to-unescape -unicode-characters-ie-u1234) – JAL