JavaScript を使用して、最後のコンマを削除するにはどうすればよいですか?ただし、コンマが最後の文字であるか、コンマの後に空白しかない場合に限りますか? これは私のコードです。私は実用的なフィドルを手に入れました。しかし、それにはバグがあります。
var str = 'This, is a test.';
alert( removeLastComma(str) ); // should remain unchanged
var str = 'This, is a test,';
alert( removeLastComma(str) ); // should remove the last comma
var str = 'This is a test, ';
alert( removeLastComma(str) ); // should remove the last comma
function removeLastComma(strng){
var n=strng.lastIndexOf(",");
var a=strng.substring(0,n)
return a;
}