0

我的字符串是;

var str = "Mehmet%2bAli%2b%c3%96zcan";

我想得到字符串;

var strDecoded = "Mehmet Ali Özcan";

我尝试了以下所有方法;

strDecoded = decodeURIComponent(str); // Fails;
strDecoded = decodeURIComponent((str + '').replace(/\+/g, '%20')); // Fails
strDecoded = _decodeURI(str); // Fails


function _decodeURI(str) {
  str = decodeURI(str);
  str = str.replace(/%27/g, "'");
  return str;
}

我还能做些什么来获得正确的字符串?任何想法?

4

2 回答 2

3

以下对我有用:

decodeURIComponent("Mehmet%2bAli%2b%c3%96zcan").replace(/\++/g, ' ');
于 2013-08-02T12:41:54.997 回答
1
decodeURIComponent(str.replace(/%2b/g, '%20'));
于 2013-08-02T12:41:57.260 回答