任何人都可以帮我格式化下面的字符串以显示最终结果“ Mark,Anthony ”我一直在javascript中使用子字符串进行格式化并且我们有类似子序列来制作这些格式在一行代码?
var res="undefinedMark, Anthony,"
var final = res.substring(9, res.length); // removes undefined
var finalOP = final.substring(0, final.length - 9); // removes the final ,
感谢
答案 0 :(得分:1)
您可以使用String.replace
方法:
var final = res.replace(/undefined/,'') //=>replace undefined with ''
.replace(/,$/,''); //=>replace the last ','