How can I do a concatenation like this in EL
<c:out value="${r:urlEncode(game.index+'/?=')}" />
This doesn't work because it wants to add game.index and '/?=' as numbers, which would be rather silly.
I've also tried this, which doesn't work either:
<c:out value="${r:urlEncode(${game.index}/?=)}" />