Skip to content

Instantly share code, notes, and snippets.

@tomoyamkung
Created November 18, 2013 04:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomoyamkung/7522439 to your computer and use it in GitHub Desktop.
Save tomoyamkung/7522439 to your computer and use it in GitHub Desktop.
[JavaScript]改行コードを <br /> タグに置き換える。
/**
* 改行コードを <br /> タグに置き換える。
*
* @param {String} str 改行コードを含んだ文字列
* @returns {String} 置き換えた文字列
*/
function lf2br(str) {
return str.replace(/\r?\n/g, "<br />");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment