본문 바로가기
JSP

jstl 대 소문자

by 자바초보자 2022. 12. 7.
728x90

${fn:toLowerCase(list.col_name)}

${fn:toUpperCase(list.col_name)}  이렇게 넣어주기만 하면 값이 나옵니다 

ex)

 ${list.col_name} = Korea

 

1. 소문자 변환 : ${fn:toLowerCase(list.col_name)}  = korea

2. 대문자 변환 : ${fn:toUpperCase(list.col_name)} = KOREA

728x90