I am working on a Spring application and in JSPX page I need to dynamically load some values from properties page and set them as dropdown using options tag. I need to use same text for options value and for displaying but for options value, I need to remove all special characters.
For example if value is Maternal Uncle, then I need
<option value="MaternalUncle">Maternal Uncle</option>
What I am getting is
<option value="Maternal Uncle">Maternal Uncle</option>
There are 2 applications which can use that page and which properties file to load depends on app. If I load values for app 1 then values get displayed properly, Last value in app1 is 'Others' and does not has any special characters. For app 2 it does not trims whitespaces where last value is 'Maternal Uncle'. repOptions in code is ArrayList with values loaded from properties file. Here is my code:
<select name="person" id="person">
<option value="na">Select the relationship</option>
<c:forEach items="${repOptions}" var="repOption">
<option value="${fn:replace(repOption, '[^A-Za-z]','')}">${repOption}</option>
</c:forEach>
</select>
First app removes whitespaces as this value is 4th in list of 9. For app2 , this is last value and regex does not works. If I put Maternal Uncle as first property for app2 then this works fine but requirements is to have it last option.
<option value="${fn:replace(repOption, ' ','')}">
is working for whitespaces but there can be values like Brother/Sister, so I need to remove / also, hence I am using regex.
The JSTL
fn:replace()
does not use a regular expression based replacement. It's just an exact charsequence-by-charsequence replacement, exactly like asString#replace()
does.JSTL does not offer another EL function for that. You could just homegrow an EL function yourself which delegates to the regex based
String#replaceAll()
.E.g.
Which you register in a
/WEB-INF/functions.tld
file as follows:And finally use as below:
Or, if you're already on Servlet 3.0 / EL 2.2 or newer (Tomcat 7 or newer), wherein EL started to support invoking methods with arguments, simply directly invoke
String#replaceAll()
method on the string instance.See also: