文字変換実験 for JavaScript






実際に変換に用いているコードはこれだけ。

document.Form_JSCodeEscape.Dest.value
  = document.Form_JSCodeEscape.Source.value
        .replace( /&/g , '&' )
        .replace( /</g , '&lt;' )
        .replace( />/g , '&gt;' )
        .replace( /\n/g , '<br>' );


[管理人の実験室へ戻る] [更新履歴]