vote up 0 vote down star

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

flag
Where are you getting it from? What kind of object is it in? Can you post the code you have already? – mmyers Jun 19 at 21:37
String notes = request.getParameter("notes"); notes is a textarea html element – Svet Jun 19 at 22:08

2 Answers

vote up 1 vote down

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|flag
Java has the /REGEX/ notation? – Tetsujin no Oni Jun 19 at 21:43
No, it should be "\\n", not /\n/. – mmyers Jun 19 at 21:48
No, it doesn't. good catch - I'm used to writing Javascript. – Jeff Meatball Yang Jun 19 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 at 21:52
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.