js去除字符串最后一个特殊符号(如:逗号、顿号等)

2024年07月27日 建站教程

const obj="中国,美国,英国,法国,德国,"
//方法一:
const result1 = obj.substring(0, obj.lastIndexOf(','));
//方法二:
const result2 = (obj.substring(obj.length - 1) == ',') ? obj.substring(0, obj.length - 1) : obj;
//方法三:
const result3 = obj.substring(0,obj.length-1);
//方法四:
const reg = /,$/gi;
const result4 = obj.replace(reg,"");
//结果输出:
console.log('方法1:',result1)
console.log('方法2:',result2)
console.log('方法3:',result3)
console.log('方法4:',result4)

本文链接:http://so.lmcjl.com/news/9287/

展开阅读全文
相关内容