How to find length of a string in JSF using EL expressions.
843844Jan 23 2008 — edited Jan 23 2008I am doing it as below for finding string length
<c:set var="test" value="#{myPageBean.myMethod.length()}" />
While evaluating the above expression,it will call getMyMethod() which will return a String. On that it will call length().
But it this throwing parsing error,
Is it different in JSF?..Pls help.