How can I split strings separated by "/" inside a jsp page using JSTL?
I have a string in this format: **
"23/11/2010"
*. Sometimes, the string could be like this: *
"1/1/2010"
*. I need to do something in order to split the string in three different substrings: *
"23", "11", "2010".
** This is because I need to put each one of them inside three different text fields, like these:
<input type="text" value="23">/
<input type="text" value="11">/
<input type="text" value="2010">
I could not find any working example yet.
Thanks in advance!