I have a string which is a base64encoding of an audio file and looks like -"\/qwerty\/\/\/qwertyuiop". However, my server side developer says he just receives -"/qwerty///qwertyuiop". Which does not give the same result in decoding. So in what format do i send him that he will receive -"\/qwerty\/\/\/qwertyuiop" ? Please help.
问问题
177 次
2 回答
0
于 2013-06-26T06:50:52.583 回答
0
我认为您想要的是从您的 URL中转义“\” 。您可以使用BackSlash Escape Character。
更新 :
您可以使用这些链接中的答案:
还可以看看这个美丽的链接:HTML URL 编码参考(归功于 HotLicks)
于 2013-06-26T09:30:03.050 回答