How to enable the "multi dollar interpolation" fea...
# datascience
d
How to enable the "multi dollar interpolation" feature ? Sometimes I work with mongodb queries, and I need the dollar sign $ inside a string without interpolation:
Copy code
$$"test $test"
$$"""test $test"""
Exception/hint appears: The feature "multi dollar interpolation" is experimental and should be enabled explicitly
r
unfortunately K2 is not yet supported in Kotlin Notebooks until the next release. For now please use the following workaround:
Copy code
"test ${'$'}test"