改行を取り除く


動作ブラウザ 【 IE:4.0  NN:3.0
Internet Explorer Netscape Navigator DreamPassport iCab
3.0x 4.0x 4.5 5.0x 5.5 2.0x 3.0x 4.0x 4.x 6.0 2 3 2.x
Windows × - × - × -
Macintosh × - × - - ×
UNIX - - - - - × - - -
Dreamcast - - - - - - - - - - × × -

ポイント txt2 = txt1.replace(/[\n\r]/g,"");
説  明 テキストエリアの改行コードを取り除くには正規表現を使い「文字列..replace(/[\n\r]/g,"")」のように指定します。
サンプル <html> <head> <title>改行を取り除く</title> <script language="JavaScript"><!-- function repCRLF() { txt1 = document.myFORM.myTEXT.value; txt2 = txt1.replace(/[\n\r]/g,""); document.myFORM.result.value = txt2; } // --></script> </head> <body> <form name="myFORM"> 元テキスト:<textarea rows="3" name="myTEXT"></textarea><br>   処理後:<textarea rows="3" name="result"></textarea><br> <input type="button" value="取り除く" onClick="repCRLF()"> </form> </body> </html>
補足説明 UNIXの改行コードは0x0Aの1バイト(正規表現では\n)となります。サンプルではn = txt.match(/\n/g);となります。

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!

写真素材 PIXTA