I have a value that comes out of this statement :
#springMessage("count.french")
That I need to append to another string like
#set ( $theCount = '5467 ' )
then essentially I need to do this
#set ( $countText = $theCount+#springMessage("count.french") )
but it doesn’t like that. Anyone have any idea how to accomplish this?
Creating a temp variable should be as simple as the following (note the quotes):
Then, use this however you want, ex. concat it to another string.