English 中文(简体)
标题标题: 替换在替换中
原标题:Javascript: replace inside a replace

我输入的很多文字线 看起来像这样:

a.b.c.d.e (f:g)

我需要把这个变成

a.b.c.d.e (a/b/c/d/e/f?g)

请注意,点形部分( a.b.c.d.e.e/code > ) 可能有不同数量的元素, 所以有时它会是 q.r.s.t , 有时是 u.v.w.x.y.z 。 我有一个 replace () () (a.b.c.d.e.f?g) , 但我需要的是将所有这些 . 转换为结果中的 / <

是否有办法在替换器内进行替换? 还是我应该叫两次替换( ) 在字符串上?

对不起,如果这个问题的措辞不正确, 我不太擅长用正则表达式写成javascript。

最佳回答

一个非常疯狂的方法 这样做:

var str = "a.b.c.d.e (f:g)";
var re = /([^s]+)s(([^:]+):([^)]+))/;
var newStr = str.replace(re, function(a,b,c,d){ return b + " (" + b.replace(/./g,"/") + "/" + c + "?" + d + ")"; });

"http://jsfiddle.net/6wZja/" rel="no follow">jsfidle

问题回答

您需要将调用链绑到 replace () 之后的调用链。

var result = source.replace("foo", "bar").replace("oof", "rab");

一种疗养方式: < a href="http://jsfiddle.net/smfPU/" rel="nofollow" >http://jsfiddle.net/smfPU/

input = "a.b.c.d.e.w.x.y.z (f:g:h)";
output = input.replace(/:/g, "?");
outputparts = output.split("(");
left = outputparts[0];
middle = left.replace(/./g, "/").trim();
right = outputparts[1];
output = left + "(" + middle + "/" + right;
document.write(output);




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.