I\'m trying to get numbers formatted in this specific format:
\"1 234.56\"
So, two decimals, separated by a dot. And grouping thousands with a space char (op
Here is one way.
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> ${fn:replace(pat, ",", " ")}