I have a list of bean objects passed into my JSP page, and one of them is a comment field. This field may contain newlines, and I want to replace them with semicolons using JSTL, so that the field can be displayed in a text input. I have found one solution, but it's not very elegant. I'll post below as a possibility.
|
|
Here is a solution I found. It doesn't seem very elegant, though:
|
||
|
|
|
You should be able to do it with fn:replace. You will need to import the tag library into your JSP with the following declaration: <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> Then you can use the following expression to replace occurrences of newline in ${data} with a semicolon:
${fn:replace(data, "\n", ";")}
The documentation is not great on this stuff and I have not had the opportunity to test it. |
||||||
|
|
|
This solution is more elegant than your own solution which is setting the pagecontext attribute directly. You should use the
BTW: |
|||
|
|
|
|
You could create your own JSP function. http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPTags6.html This is roughly what you need to do. Create a tag library descriptor file
Create a Java class for the functions logic.
In your JSP you can access your function in the following way.
|
||
|
|
|
|
\n does not represent the newline character in an EL expression. The solution which sets a However, I prefer to use the Jakarta String Tab Library to solve this problem:
You can use whatever you want for the newlineToken; "~n" is unlikely to show up in the text I'm doing the replacement on, so it was a reasonable choice for me. |
||
|
|
|
|
You could write your own JSP function to do the replacement. This means you'd end up with something like:
Where These functions are pretty easy to implement (they're just a static method) although I can't seem to find a good reference for writing these at the moment. |
|||
|
|
|
|
In the value while setting the var, press ENTER between the double quotes. ${fn:replace(data, newLineChar, ";")} |
||
|
|
|
|
This does not work for me:
This does:
|
||
|
|
|
|
Although this is an old topic, but one has kicked this topic and no-one was able to post the right solution, so here it is:
Yes, just escape the backslash. |
||
|
|
