Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a regex that I wanted to trim the <br> of a variable

str1.replace(/^&lt;br&gt;|&lt;br&gt;$/g,'');

example i want to trim a string something like this

var str1 = "<br>hooray!<br>";

and i want it to be like this

var str = "hooray!";

but it seems not to be working...

what is the correct regex for removing the first and last <br> tag?

share|improve this question
Please give some sample input strings and expected output for corresponding input string – Shekhar Apr 24 '12 at 10:21
1  
Assuming you've already tried /^<br>|<br>$/g? – Josh Davenport Apr 24 '12 at 10:22
yes i tried it... it doesn't work... – Mahan Apr 24 '12 at 10:24

4 Answers

up vote 5 down vote accepted

Try this regex:

str1.replace(/(^<br>|<br>$)/g,"");

Demo on this fiddle

share|improve this answer
works like a charm ^^ – Mahan Apr 24 '12 at 10:30

Try this:

var mystring = '<br>hooray!<br>';
var find = "<br>"; 
var regex = new RegExp(find, "g"); 
var result = mystring.replace(regex, "");

Here is the fiddle

share|improve this answer

I think br tag is usually written as <br/> so you can use regex like <br[ ]?/>;

If you want to cover br tag which is written as <br> </br>then you have to use <br>[\s\S]*?<br[ ]?/>

After question is edited

for input like <br>hooray!<br> this, you can use just <br> and replace all matches with blank

share|improve this answer
is my regex for trimming br's is correct? to remove the first and last one – Mahan Apr 24 '12 at 10:25
@Mahan, your regex will only work for <br> tags which are at either start of line or at the end of line. You can use simple <br> tag to remove all <br> occurring anywhere in input string – Shekhar Apr 24 '12 at 10:28
@Mahan, better idea is to use string replace instead of using regex because I dont see any advantage of using regex in your case. If you want to use some special chars like * or ? or backtracking then you can go with regex, otherwise simple string replacement will be efficient and sufficient. – Shekhar Apr 24 '12 at 10:30
1  
You can't use &lt; in regular expressions, because that matches exactly &lt; -- it doesn't transliterate it to <. And @Mahan doesn't mention <br> in the middle of the text, only at the beginning and end. – Andrew Leach Apr 24 '12 at 10:30
@AndrewLeach, &lt; replaced with < – Shekhar Apr 24 '12 at 10:32

Try this:
(?im)(^<br[\s/]*>|<br[\s/]*>$)

JavaScript Code:

result = subject.replace(/(?:(?:^<br[\s\/]*>)|(?:<br[\s\/]*>$))/mg, "");

share|improve this answer
doesn't work... – Mahan Apr 24 '12 at 10:28

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.