functions
-
JSP : Standard JSP Tag Library (JSTL) - Functional TagsSpring 2021. 6. 18. 19:02
function태그는 다음의 코드를 가지고 있어야 한다. function-test.jsp Length of the string ${data} : ${fn:length(data)} uppercase, startswith를 추가하자. Length of the string ${data} : ${fn:length(data)} Uppercase version of the string ${data } : ${fn:toUpperCase(data) } Does the string ${data } start with luv? : ${fn:startsWith(data, "luv") } 이제 split, join을 해보자. Split Demo ${tempCity} Join Demo Result of joining: ${fu..