How do i write a regex to replace <br /> or <br> with \n. I'm trying to move text from div to textarea, but don't want <br>'s to show in the textarea, so i want to replace then with \n.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
or using jQuery:
edit: added edit2: you can use |
|||||||||||||||||
|
|
|
|||||
|
|
a cheap and nasty would be:
EDIT
Also created a jsfiddle if needed: http://jsfiddle.net/2D3xx/ |
|||||||
|
|
Not really anything to do with jQuery, but if you want to trim a pattern from a string, then use a regular expression:
|
||||
|
|
nl2br()is the function u need – diEcho May 11 '11 at 4:54