Skip to content
Advertisement

Escape dollar sign ($) in Java Manifold String templates (manifold.systems)

I have added Manifold.systems Java library to our Maven Java project pom.xml:

JavaScript

After this the compilation of the following line:

JavaScript

fails compilation:

JavaScript

Obviously, this is Manifold String templates trying to find a variable named $HIS, which is not defined in scope. So, I need to escape the $ sign, because I need it to be part of the String literal. How can I do it? If I use $ then IntelliJ screams “Illegal escape character in string literal”.

Advertisement

Answer

The most elegant way I found was to use annotation @DisableStringLiteralTemplates from the same Manifold library:

JavaScript

Escaping the dollar with $ also works, just the IntelliJ Manifold.systems plugin is required for the IDE to recognize all functions of the Manifold Java library.

A detailed description of Manifold String templates can be found here: https://github.com/manifold-systems/manifold/tree/master/manifold-deps-parent/manifold-strings

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement