Help for this page

Select Code to Download


  1. or download this
    # Adds trailing newline
    s/([^\n]{0,14},|[^\n]{15})(?!\n)/$1\n/g
    
  2. or download this
    # Doesn't add trailing newline
    s/([^\n]{0,14},|[^\n]{15})(?=[^\n])/$1\n/g