up vote 0 down vote favorite
share [g+] share [fb]

How to split HTML textarea element into array of lines in Java

link|improve this question
Where are you getting it from? What kind of object is it in? Can you post the code you have already? – Michael Myers Jun 19 '09 at 21:37
String notes = request.getParameter("notes"); notes is a textarea html element – Svet Jun 19 '09 at 22:08
feedback

2 Answers

If you mean Java and not Javascript (assuming you have a JSP system):

String[] lines = myTextArea.getText().split("\\n");

or

String[] lines = request.getParameter("textarea").split("\\n");


Edited down:

For javascript:

var lines = document.getElementById("myTextArea").value.split('\\n');
link|improve this answer
Java has the /REGEX/ notation? – Tetsujin no Oni Jun 19 '09 at 21:43
No, it should be "\\n", not /\n/. – Michael Myers Jun 19 '09 at 21:48
No, it doesn't. good catch - I'm used to writing Javascript. – Jeff Meatball Yang Jun 19 '09 at 21:48
I'm not using JTextArea so getText() wont work. I'm getting the textarea content with request.getParameter("textarea") which returns string. No it is not JS. – Svet Jun 19 '09 at 21:52
feedback

In Java, get the text and pass it to a method like:

private String[] split(String s) {
        if (s==null) {
            return new String[0];
        }

        StringTokenizer st = new StringTokenizer(s,"\n");
        ArrayList list = new ArrayList();
        while (st.hasMoreElements()) {
            list.add(st.nextToken());
        }

        return (String[]) list.toArray(new String[list.size()]);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown