我在JSP标记文件中有一个变量,如下所示
<span class="breadcrumbName">${breadcrumb.name}</span>
我需要将文本/字符串从此变量转换为标题案例...有人可以帮助我吗?感谢
答案 0 :(得分:1)
使用以下
解决${fn:toUpperCase(fn:substring(breadcrumb.name, 0, 1))}${fn:toLowerCase(fn:substring(breadcrumb.name, 1, -1))}
确保您拥有以下
<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
答案 1 :(得分:-1)
我不这么认为你可以在el中转换字符串的情况,我可能是错的
您可以使用css通过对span标记应用适当的样式来查找变通方法
<span style="text-transform: capitalize;"
class="breadcrumbName">${breadcrumb.name}</span>
希望这有帮助。