标签:需求 pac str happy ring tput 查询 esc des
1 function replaceSpace(str) 2 { 3 return str.replace(/ /g,‘%20‘); 4 }
replace() 方法用于在字符串中用一些字符替换另一些字符,或替换一个与正则表达式匹配的子串。
stringObject.replace(regexp/substr,replacement)
replace() 传送门
方法二:字符串的查询
1 function replaceSpace(str) 2 { 3 let output = ‘‘; 4 for (let i=0,len=str.length; i<len; i++) { 5 if(str[i] == ‘ ‘) { 6 output += ‘%20‘; 7 }else{ 8 output += str[i]; 9 } 10 } 11 return output; 12 }
标签:需求 pac str happy ring tput 查询 esc des
原文地址:https://www.cnblogs.com/boxin/p/9782126.html