我正在尝试在 iOS Swift 应用程序中获取一些图像提要。但 Feed 网址有时会包含 "\"、"/"。
例如:
http://lionsports.net/common/controls/image_handler.aspx?thumb_prefix=rp_primary&image_path=/images/2014/11/16\ /mbb_DeVonteUpson_3.jpg
我需要从“\/”中删除那个“\”。我怎样才能做到这一点?
注意:“\”和“/”之间没有空格,但我保留了它,因为此编辑器会自动删除“\”
Best Answer-推荐答案 strong>
str - 认为这是您的 url 字符串
让 newStr = str.stringByReplacingOccurrencesOfString("\\/", withString: "/")
关于ios - 从 iOS Swift 中的 URL 中删除 "\",我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27717702/
|