If you want to toy with white-spaces, tabs, linefeed and carriage-return, how do you "select them" in javascript?

  x = $('pre').html().replace(/(\r\n|\n|\r)/gm, "#");

edit : ^Does not work for linefeed and carriage-return.

Now, tabs are /(\t)/ and spaces are /( )/.

link|improve this question

73% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Your example actually works.

http://jsfiddle.net/RSfN5/1/

link|improve this answer
Oh god, that was a dumb error from my part >< Thanks! – Kraz Jul 7 '11 at 20:14
feedback

You could always escape the string then replace the escaped values - then unescape again - e.g.

<pre>
<script language="javascript" type="text/javascript">
var str = "This is some\nJavascripty stuff with\nlinebreaks";
document.write(str);
var escStr = escape(str);
document.write('<br />');
noLineBreaks = escStr.replace(/%0A/g, "#");
document.write(unescape(noLineBreaks));
</script>
</pre>
link|improve this answer
It would be for user-filled <pre>. It can't contain javascript. – Kraz Jul 7 '11 at 19:23
OK - probably did not explain myself well enough - try: alert(unescape(escape($('pre').html()).replace(/%0A/g,'#'))); – mj7 Jul 7 '11 at 19:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.