Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Jochen Preusche http://www.jochenpreusche.de

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Javascript count line breaks

Returns the number of line breaks in a string.

   1  
   2  function lineBreakCount(str){
   3  	/* counts \n */
   4  	try {
   5  		return((str.match(/[^\n]*\n[^\n]*/gi).length));
   6  	} catch(e) {
   7  		return 0;
   8  	}
   9  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS