欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jstl截取字符串的3种有效方法 乔乐共享jstl字符串截取 

程序员文章站 2024-03-18 18:50:04
...
<%@ taglib
	uri="http://java.sun.com/jsp/jstl/functions"
	prefix="fn"
%>


2012-03-14 10:01:04
<input
										type="text"
										name="proclog.lastTime"
										class="input"
										readonly="readonly"
										onClick="WdatePicker();"
										value="${fn:substring(proclog.lastTime,0,10)}"
									/>

2012-03-14

<input
										type="text"
										name="proclog.time"
										class="input"
										readonly="readonly"
										onClick="WdatePicker();"
										value="${fn:substringBefore(proclog.time,' ')}"
									/>

2012-03-14

<input
										type="text"
										name="proclog.time"
										class="input"
										readonly="readonly"
										onClick="WdatePicker();"
										value="${fn:trim(fn:substringAfter(proclog.time,' '))}"
									/>

10:01:04