怎样在标签中使用标签c:set value1234567 varstr scopepage/c:set${fn:substring(1234567,
怎样在标签中使用标签
<c:set value="1234567" var="str" scope="page"></c:set>
${fn:substring("1234567","1","4") }---正确
${fn:substring(${str},"1","4") }----错误
该怎样在标签中使用标签?
[解决办法]
${fn:substring(str,"1","4") }直接用句可以了
