js中清除字符串中某个字符串
#create ydds
#date 2009-09-20
//remove src target
function removestrwithcomma(srcstr, targetstr){
var returnstr = '';
if (srcstr == null || srcstr == '' || srcstr == undefined) {
return returnstr;
}
else
if (srcstr.indexof(targetstr) == -1) {
return srcstr;
}
else {
var srcstrs = srcstr.split(',');
if (srcstrs.length == 1) {
returnstr = '';
}
else
if (srcstr.match(eval("/^" + targetstr + ".*/")) != null) {
returnstr = srcstr.replace(targetstr + ',', '');
}
else
if (srcstr.match(eval("/.*" + targetstr + "$/")) != null) {
returnstr = srcstr.replace(',' + targetstr, '');
}
else {
returnstr = srcstr.replace(',' + targetstr, '');
}
return returnstr;
}
}
var xmlhttplink;
function createxmllinkhttprequest(){
if (window.activexobject) {
xmlhttplink = new activexobject("microsoft.xmlhttp");
}
else
if (window.xmlhttprequest) {
xmlhttplink = new xmlhttprequest();
}
}
本文出自 “一灯” 博客
上一篇: JSP_include指令和(jsp:include)
下一篇: 二进制中1的个数
推荐阅读
-
php在字符串中查找另一个字符串_PHP教程
-
php提取csv格式文件中的字符串出现的有关问题及解决方法
-
JavaScript中操作字符串之localeCompare()方法的使用
-
php中将数组转成字符串并保存到数据库中的函数代码_php技巧
-
企业案例:查找当前目录下所有文件,并把文件中的https://www.cnblogs.com/zhaokang2019/字符串替换成https://www.cnblogs.com/guobaoyan2019/
-
python将字符串插入表中避免单双引号问题
-
PHP utf-8中文截取无乱码(字符串判断版本)
-
sql话语中能否直接把截取的字符串当作where条件
-
PHP中substr_count()函数获取子字符串出现次数的方法,phpsubstr_count
-
php善用正则表达式 处理字符串中需不要的值