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
This is a valid solution for the JSP EL:
"${fn:split(string1, Character.valueOf(10))}"