I have a variable in JSP tag file as below
<span class="breadcrumbName">${breadcrumb.name}</span>
I need to convert the text/string from this variable into Title Case ... Can someone please help me with this? Thanks
I have a variable in JSP tag file as below
<span class="breadcrumbName">${breadcrumb.name}</span>
I need to convert the text/string from this variable into Title Case ... Can someone please help me with this? Thanks
Solved by using the following
${fn:toUpperCase(fn:substring(breadcrumb.name, 0, 1))}${fn:toLowerCase(fn:substring(breadcrumb.name, 1, -1))}
make sure you have the following
<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
I dont think so you can convert the string's case in el, I may be wrong
You can use css to find a workaround by applying proper styling to your span tag
<span style="text-transform: capitalize;"
class="breadcrumbName">${breadcrumb.name}</span>
Hope this helps.