For my project, I am utilizing JSTL <c:out>
. Currently, I have a string coming from the servlet that looks like this: "2\'000;11\'222;10\'333"
. In JavaScript, I want to split it into separate values like 2'000;11'222;10'333
. However, when I use the <c:out>
tag, the "\'"
is transformed into "\'"
, which disrupts the split function.
Is there a way to prevent JSTL from escaping characters?
stringaCompleta += 'Gennaio;<c:out value="${valori.value}" />';