欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-03-20 17:47:14
假设有一个字符串,可能'good morning'也可能是'hello world',我想将第五个字符,替换成'-'。因为字符串虽然可以像数组那样获取某一位置字符'hello world'[4],但是...

假设有一个字符串,可能'good morning'也可能是'hello world',我想将第五个字符,替换成'-'
因为字符串虽然可以像数组那样获取某一位置字符'hello world'[4],但是不能像数组那样直接修改某一位置的字符'hello world'[4] = '-',这样是行不通的,但是可以把它切分成数组,修改某一位置的值,然后在合并回来。
方法1:

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

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

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

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!”

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

string.replace(/reallydo/g,replacewith);
string.replace(newregexp(reallydo,'g'),replacewith);

string:字符串表达式包含要替代的子字符串。
reallydo:被搜索的子字符串。
replacewith:用于替换的子字符串。

js代码

<script type="text/javascript"> 
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); 
  } 
} 
</script> 

总结

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