Reports all strings with an interpolation prefix.

The quick for the inspection fix removes the interpolation prefix, updates interpolation entries and escapes unsafe dollar characters.

예:


val foo = $$"""
{
    "foo": $ref,
    "bar": {
        "baz": "$20"
        "boo": "$${100 + 200}"
    }
}
"""

빠른 수정 적용 후:


val foo = """
{
    "foo": ${'$'}ref,
    "bar": {
        "baz": "$20"
        "boo": "${100 + 200}"
    }
}
"""