最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Add space in the string before and after certain characters - Stack Overflow

programmeradmin1浏览0评论

I want to add space in the string before and after certain characters.

var x = "asdasdasdasd+adasdasdasd/asdasdasdasd*asdasdasd-asdasdasd:asdasdasdadasdasd?";

I want to add space before and after

var separators = ['+', '-', '(', ')', '*', '/', ':', '?'];

So the output will be like

asdasdasdasd + adasdasdasd / asdasdasdasd * asdasdasd - as ( dasd ) asd : asdasdasdadasdasd ?

I want to add space in the string before and after certain characters.

var x = "asdasdasdasd+adasdasdasd/asdasdasdasd*asdasdasd-asdasdasd:asdasdasdadasdasd?";

I want to add space before and after

var separators = ['+', '-', '(', ')', '*', '/', ':', '?'];

So the output will be like

asdasdasdasd + adasdasdasd / asdasdasdasd * asdasdasd - as ( dasd ) asd : asdasdasdadasdasd ?
Share Improve this question asked Oct 11, 2013 at 8:44 OkkyOkky 10.5k15 gold badges77 silver badges123 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 3

You can use a Regex for that.

for (var i = 0; i < separators.length; i++) { 
      var rg = new RegExp("\\" + separators[i], "g"); 
      x = x.replace(rg, " " + separators[i] + " "); 
}

You may use something like that:

var str = x.replace(new RegExp('\\' + separators.join('|\\'), 'g'), ' $& ')

you ca try this | Demo

function fix(val)
{
  var separators = ['+', '-', '(', ')', '*', '/', ':', '?'];
  var result="";
  flag=true;
  for(var i=0;i<val.length;i++)
  {
     flag=true;
     for(var j=0;j<separators.length;j++)
     {
        if(val[i]==separators[j])
        {
            result += " " + val[i] + " ";
            flag=false;         
        }
     }
     if(flag)
     {
            result +=val[i];
     }
}

alert(result);
}

Well this looks fairly easy...

var separators = ['+', '-', '(', ')', '*', '/', ':', '?'];
var x = "asdasdasdasd+adasdasdasd/asdasdasdasd*asdasdasd-asdasdasd:asdasdasdadasdasd?";
$(separators).each(function (index, element) {
    x = x.replace(element, " " + element + " ");
});

Here's a fiddle: http://jsfiddle/gPza4/

For the people who want to understand this code, what I basically do is to make the separators array to a jQuery object and then iterate over it while replacing the occurances of those separators in the string x with their "spaced" form.

发布评论

评论列表(0)

  1. 暂无评论