I have a string in jstl: 'Tall &. Big' But I want this to replace with :'TallBig'.
I am trying to this by using fn:replace(String,'&',''); but I don't know how to mention multiple characters in this function to be removed.
Means I want to remove all special characters from a string.