js替换字符串中指定位置的字符,本文通过两种方法实例

  JS替换字符串中指定位置的字符(多种方法)

  更新时间:2020年05月28日 08:38:38 作者:秦老爷子

  这篇文章主要介绍了js替换字符串中指定位置的字符,本文通过两种方法实例代码相结合给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

  假设有一个字符串,可能'Good Morning'也可能是'Hello World',我想将第五个字符,替换成'-'。

  因为字符串虽然可以像数组那样获取某一位置字符'Hello World'[4],但是不能像数组那样直接修改某一位置的字符'Hello World'[4] = '-',这样是行不通的js remove字符串,但是可以把它切分成数组,修改某一位置的值,然后在合并回来。

  方法1:

  <pre class="brush:js;">
const replaceStr1 = (str, index, char) => {
const strAry = str.split('');
strAry[index] = char;
return strAry.join('');
}
replaceStr(str1, 4, '-'); // => Good-Morning
replaceStr(str2, 4, '-'); // => Hell- World</pre>

  js的字符串有个substring方法,用于提取字符串中介于两个指定下标之间的字符js remove字符串,也就是说可以用'Hello World'.substring(0, 4),得到Hell,加上要替换的字符,再加上后面的字符串就可以。

  方法2:

  <pre class="brush:js;">
const replaceStr2 = (str, index, char) => {
return str.substring(0, index) + char + str.substring(index + 1);
}
replaceStr2(str1, 4, '-'); // => Good-Morning
replaceStr2(str2, 4, '-'); // => Hell- World</pre>

  ps:下面看下js替换字符串中所有指定的字符

  第一次发现JavaScript中replace()方法如果直接用str.replace("-","!")只会替换第一个匹配的字符.

  而str.replace(/-/g,"!")则可以全部替换掉匹配的字符(g为全局标志)。

  replace()

  Thereplace()methodreturnsthestringthatresultswhenyoureplacetextmatchingitsfirstargument

  (aregularexpression)withthetextofthesecondargument(astring).

  Iftheg(global)flagisnotsetintheregularexpressiondeclaration,thismethodreplacesonlythefirst

  occurrenceofthepattern.Forexample,

  vars="Hello.Regexpsarefun.";s=s.replace(/./,"!");//replacefirstperiodwithanexclamationpointalert(s);

  producesthestring“Hello!Regexpsarefun.”Includingthegflagwillcausetheinterpreterto

  performaglobalreplace,findingandreplacingeverymatchingsubstring.Forexample,

  vars="Hello.Regexpsarefun.";s=s.replace(/./g,"!");//replaceallperiodswithexclamationpointsalert(s);

  yieldsthisresult:“Hello!Regexpsarefun!”

  所以可以用以下几种方式.:

  <pre class="brush:js;">
string.replace(/reallyDo/g,replaceWith);
string.replace(newRegExp(reallyDo,'g'),replaceWith);</pre>

  string:字符串表达式包含要替代的子字符串。

  reallyDo:被搜索的子字符串。

  replaceWith:用于替换的子字符串。

  Js代码

  <pre class="brush:js;">

String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) {
if (!RegExp.prototype.isPrototypeOf(reallyDo)) {

return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi": "g")), replaceWith); 

} else {

return this.replace(reallyDo, replaceWith); 

}
}
</pre>

  总结

  到此这篇关于JS替换字符串中指定位置的字符的文章就介绍到这了,更多相关js替换字符内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

文章由官网发布,如若转载,请注明出处:https://www.veimoz.com/1537
0 评论
605

发表评论

!