3

What is the best way to deal with dollar sign in stringtemplate.

For example I need following template:

You can purchase item $name$ for $5
Alexey
  • 517
  • 2
  • 10
  • 21

2 Answers2

5

Have you tried escaping the $?

You can purchase item $name$ for \$5
1

You should use escaping, for example \$

gaborsch
  • 15,408
  • 6
  • 37
  • 48