Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the loop below, how can I remove the comma from the latt key in the loop?

var result = 'These are the results: ';
jQuery.each(item['keyterms']['terms'],function(i,kw){
for (key in keywords){
sep = ',';
    if (keywords[key] > 5) result += '<span>' + key + sep + '</span>';
}}
share|improve this question
1  
If each key is wrapped in a <span> what good is the separator? Maybe you meant '<span>' + key + '</span>' + sep. – Nimrod Feb 16 '11 at 5:40
@Nimrod, the span is for css styling – Scott B Feb 16 '11 at 17:26

4 Answers

up vote 7 down vote accepted

Instead of inserting coma inside loop you can use standard javascript function JOIN

var results = Array();

for (key in keywords){
    if (keywords[key] > 5) results.push('<span>' + key + '</span>');
}

var message = 'These are the results: ' + results.join(',');
share|improve this answer
1  
+ sep (within for loop) should not be required anymore... – Eero Feb 16 '11 at 6:13
I'm sure this will work, but there's one problem. the result variable is previously declared and set to a string. Then its appended with the results of the for loop. How would you modify your answer accordingly? (I've modified my question to include that, sorry). – Scott B Feb 16 '11 at 18:10
You can move your message few lines down, it would make your code more readable, otherwise rename results array to any other value to avoid collisions. – Nazariy Feb 16 '11 at 18:52

Simple - instead of putting the separator after the key, put it before, and skip the first element (it's much easier to know when the element is first, than when it's last):

var first = true;
var result = '';
for (key in keys) {
  var sep = first ? '' : ', ';
  result += sep + key;
  first = false;
}
share|improve this answer

note that for joining strings in JS the arrays join(separator) method is faster than the + operator. So I recommend Nazariy's solution. with a small change:

var result = Array();
for (key in keywords){
    if (keywords[key] > 5) result.push(['<span>', key, sep, '</span>'].join(''));
}}
result = result.join(',');
share|improve this answer

If you're just concerned about how to remove the last separator then this should work:

jQuery.each(item['keyterms']['terms'],function(i,kw){
for (key in keywords){
sep = ',';
    if (keywords[key] > 5) result += '<span>' + key + sep + '</span>';
}}
result = result.substring(0, result.length - (sep+"</span>").length) + "</span>");

Otherwise, Nazariy's join solution is a better way to create the whole string.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.