admin管理员组文章数量:1344621
This is driving me crazy, I have a string in the format:
<br />
twice<br />
imap Test wrote:<div class="nestedMessage1"><br />
> nested<br />
><br />
> [email protected] wrote:<div class="nestedMessage2"><br />
>> test<br />
>><br />
>> -- <br />
>> Message sent via AHEM.<br />
>> </div><br />
><br /><br /></div>
And the following code:
string = string.replace(/\n/g, "");
string = replaceAll(string, "<br />>", "<br />");
function replaceAll(string, replaceString, replaceWith)
{
return string.replace(new RegExp(replaceString, 'g'),replaceWith);
}
What I am attempting to do is remove the <br />> and replace it with just the <br /> I can't simply replace all occurrences of > as they may be contained elsewhere in the line, so I only want to remove them at the start. I have tried escape characters and have hardcoded the regular expression to remove the new lines explicitly instead of including them in the function call. Any help would be appreciated.
This is driving me crazy, I have a string in the format:
<br />
twice<br />
imap Test wrote:<div class="nestedMessage1"><br />
> nested<br />
><br />
> [email protected] wrote:<div class="nestedMessage2"><br />
>> test<br />
>><br />
>> -- <br />
>> Message sent via AHEM.<br />
>> </div><br />
><br /><br /></div>
And the following code:
string = string.replace(/\n/g, "");
string = replaceAll(string, "<br />>", "<br />");
function replaceAll(string, replaceString, replaceWith)
{
return string.replace(new RegExp(replaceString, 'g'),replaceWith);
}
What I am attempting to do is remove the <br />> and replace it with just the <br /> I can't simply replace all occurrences of > as they may be contained elsewhere in the line, so I only want to remove them at the start. I have tried escape characters and have hardcoded the regular expression to remove the new lines explicitly instead of including them in the function call. Any help would be appreciated.
Share Improve this question edited Jan 26, 2010 at 0:23 Alan Moore 75.3k13 gold badges107 silver badges161 bronze badges asked Jan 26, 2010 at 0:02 GazlerGazler 84.2k18 gold badges284 silver badges245 bronze badges 3- you may have \r's in there, too – peller Commented Jan 26, 2010 at 0:09
- also you have <br />>> not just <br />> – Jason Rowe Commented Jan 26, 2010 at 0:11
- @peller, as far as I know, javascript ignored the return escape character. @Jason: The initial code was looped replacing the number of times to the depth of the number of >s. Comments are always appreciated though. :) – Gazler Commented Jan 26, 2010 at 0:18
1 Answer
Reset to default 9If your goal is simply to remove all the >
s at the beginning of the lines, that's easy to do:
var out = in.replace(new RegExp("^>+", "mg"), "");
or
var out = in.replace(/^>+/mg, "");
The m
flag means multi-line so ^
and $
will match the beginning and end of lines, not just the beginning and end of the string. See RegExp Object.
Edit: It's worth mentioning that you should probably favour using the RegExp
object over the second form (regex literal). See Are /regex/ Literals always RegExp Objects? and Why RegExp with global flag in Javascript give wrong results?.
In addition there are browser differences in how the global flag is treated on a regex literal that is used more than once. It's best to avoid it and explicitly use a RegExp
object.
本文标签: regexJavascript replacing new line characterStack Overflow
版权声明:本文标题:regex - Javascript replacing new line character - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743801535a2541404.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论