Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- </head>
- <body>
- <script>
- function c2MT () {
- var mytext = '';
- lines=document.getElementById("myta").value.split('\n')
- for (var i=0; i < lines.length; i++) {
- mytext = mytext + lines[i].replace(/ /g, '<SP>') + '<BR>';
- mytext = mytext.replace(/\r/,'');
- }
- document.getElementById("myta").value = mytext;
- }
- </script>
- <textarea id=myta cols=80 rows=20>
- </textarea>
- <button onClick="c2MT ();">Convert</button>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment