本文为大家介绍下JavaScript字符串的插入
删除
替换函数的在实际中的应用
想要学习的朋友可以参考下哈
希望对初学者有所帮助
说明
以下函数中前两个函数取出查找字符串的前一部分和后一部分以用于其他函数注意调用一次 replaceString(mainStrsearchStrreplaceStr) 函数只能将字符串 mainStr 中最先找到的一个 searchStr 字符串替换为 replaceStr 字符串并不能将字符串 mainStr 中所有的 searchStr 字符串替换为 replaceStr 字符串如果需要替换全部则需要使用循环
函数源码
[code
//提取查找字符串前面所有的字符
function getFront(mainStrsearchStr){
foundOffset=mainStrindexOf(searchStr);
if(foundOffset==){
return null;
}
return mainStrsubstring(foundOffset);
}