我正在创建一些随机字符串,其中%作为符号和一些URI组件(例如%27),但我无法在其后面添加字符%。恩。 %27。我正在使用decodeURIComponent(),因为有些字符如' (%27)," (%22)。
//'Hello'
decodeURIComponent('%27Hello%27');
//No Output
decodeURIComponent('%Hello%');
如何在字符串中包含%并使用decodeURIComponent。
答案 0 :(得分:0)
print(re.search("(\d+)\s+%",txt).group(1))
用于解码decodeURIComponent
的输出,该输出永远不会产生encodeURIComponent
。您可能根本不需要致电'%Hello%'
。