有没有办法使用 JSTL 标签将字符串转换为标题大小写?
提前致谢。
在服务器上转换字符串的另一种方法是让 CSS 完成工作:
text-transform: capitalize
一个想法:
在一个类中,创建一个使用来自 Apache Commons Lang 的 WordUtils 的简单方法,该方法将操纵您的字符串:
import org.apache.commons.lang.WordUtils;
...
public static String titleCase(String input){
return WordUtils.capitalize(input);;
}
现在,创建您自己的标签(在 function.tld 中):
<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0">
<description>functions library</description>
<display-name>functions</display-name>
<tlib-version>1.1</tlib-version>
<short-name>xfn</short-name>
<uri>http://yourdomain/functions.tld</uri>
<function>
<description>
Title case a String
</description>
<name>titleCase</name>
<function-class>Functions</function-class>
<function-signature>java.lang.String titleCase(java.lang.String)</function-signature>
<example>
${xfn:titleCase(string)}
</example>
</function>
</taglib>
ps:我从这篇文章中得到了很大的启发来给出我的答案。
在 JSTL 中并不太难...
${fn:toUpperCase(fn:substring(user.firstName, 0, 1))}${fn:toLowerCase(fn:substring(user.firstName, 1, -1))}