..and also, say `${transaction.subtotal}`, this wi...
# advancedpdf
g
..and also, say
${transaction.subtotal}
, this will include the currency symbol, how do we get the exact value only without the currency symbol
p
Have you tried converting it to a string? Something like ${transaction.subtotal?string.number} https://freemarker.apache.org/docs/ref_builtins_number.html#ref_builtin_string_for_number
g
@Paul that didn't work butthanks for the input