0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

JQuery 文末を常に一行改行(空の場合はそのまま)

Last updated at Posted at 2019-12-12
JQuery
if(text){
	text = text.replace(/\n{0,}$/,"\n\n");  
}

if(text)・・・JS中身の文字があるなら
https://qiita.com/_Hammer0724/items/3d21ef84813ee82e8252

正規表現

$   ・・・末尾
{0,}  ・・・0個以上
0以上の開業文字列を、1行開けた状態にする。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?