Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to read line by line of a text area HTML tag

I have a text area where each line contains Integer value like follows

      1234       4321      123445 

I want to check if the user has really enetered valid values and not some funny values like follows

      1234,       987l; 

For that I need to read line by line of text area and validate that. How can i read line by line of a text area using javascript?

like image 557
Saurabh Kumar Avatar asked Feb 08 '12 16:02

Saurabh Kumar


People also ask

How do you break a line through text area?

To add line breaks to a textarea, use the addition (+) operator and add the \r\n string at the place where you want to add a line break, e.g. 'line one' + '\r\n' + 'line two' . The combination of the \r and \n characters is used as a newline character.

What is the tag for text area in HTML?

Definition and Usage. The <textarea> tag defines a multi-line text input control. The <textarea> element is often used in a form, to collect user inputs like comments or reviews. A text area can hold an unlimited number of characters, and the text renders in a fixed-width font (usually Courier).

How do I display textarea content in HTML?

Use the <textarea> tag to show a text area. The HTML <textarea> tag is used within a form to declare a textarea element - a control that allows the user to input text over multiple rows. Specifies that on page load the text area should automatically get focus.


1 Answers

Try this.

var lines = $('textarea').val().split('\n'); for(var i = 0;i < lines.length;i++){     //code here using lines[i] which will give you each line } 
like image 82
ShankarSangoli Avatar answered Oct 05 '22 02:10

ShankarSangoli