Results 1 to 3 of 3
Thread: Retrieve String in textarea
- 05-16-2010, 06:43 AM #1
Member
- Join Date
- Apr 2010
- Posts
- 32
- Rep Power
- 0
Retrieve String in textarea
Hi everybody,
I have a bit trouble with textarea in JSP. Can you help me to solve it?
I want to match a word in String retrieve from tag Textarea of page1.jsp
So I have this code in page2.jsp:Java Code:<form name="form1" method="POST" action="page2.jsp"> <textarea name="textarea1" cols=20 rows=3></textarea> <input type="submit" value="Click"> </form>
I put String "anh dung" in page1.jsp and click button "Click", then page2 display: "true". No problem in this case, but in textarea page1, if I put more than 1 line (ex. line1: anh dung, line2: thanh nam...), page2'll display "false". I don't understand it?Java Code:<% String str = request.getParameter("textarea1"); boolean result = str.matches("anh.*"); out.println(result); %>
I try to do something below:
In page2.jsp, I remove the newline character of String which retrieve from page1, then match it. Page2.jsp change to:
But the result's still false.Java Code:StringBuffer strBuffer = new String(request.getParameter("textarea1"); String str; boolean result; int loc = strBuffer.indexOf("\n"); while (loc >= 0) { strBuffer.replace(loc, loc + 1, ","); loc = strBuffer.indexOf("\n"); } str = new String(strBuffer); result = str.matches("anh.*"); out.println(result);
Thanks for reading, sorry for my bad English :)
- 05-20-2010, 12:09 PM #2
Member
- Join Date
- Apr 2010
- Posts
- 32
- Rep Power
- 0
Anybody can help me :(.
Now I'm trying process with javascript sending, but I still want process it in JSP
- 05-24-2010, 12:50 AM #3
Member
- Join Date
- Apr 2010
- Posts
- 32
- Rep Power
- 0
Similar Threads
-
Store and Retrieve Problem.
By MaN-GreaSe in forum New To JavaReplies: 5Last Post: 04-23-2010, 09:50 PM -
How to convert a TextArea to a String?
By Antonioj1015 in forum Java AppletsReplies: 1Last Post: 10-16-2009, 05:23 PM -
TextArea Bug?
By Soda in forum New To JavaReplies: 2Last Post: 12-07-2007, 12:37 PM -
How to retrieve data from servlet
By valery in forum Java ServletReplies: 1Last Post: 08-06-2007, 08:25 PM -
textarea
By ubuntu in forum AWT / SwingReplies: 4Last Post: 05-12-2007, 09:54 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks