|
How to concatenate a string in JSP Expression Language
Author: Venkata Sudhakar
The below example shows how to concatenate a string in JSP Expression Language (EL)
1 | ${user.firstName}${empty user.lastName ? '': ', '.concat(user.lastName)} |
3 | #{'one'.concat(' two').concat(' three')} |
|
|