hey everyone. are there any way to _escape `$` whe...
# gradle
r
hey everyone. are there any way to escape
$
when dealing with string
? currently I have to write something like
"${'$'}argon2i${'$'}v=19${'$'}m=65536,t=10,p=1${'$'}JAqVeeNXYjPzqQxYOuek9w${'$'}bV2xPVMnPsV36LesGvM/yUDaisR3Bugn9wneiCPMnBY"
which is absolutely very ugly 🙃
b
backslash?
"\$argon2i\$v...."
r
thanks! it works... stackoverflowtold me that i should use
${'$'}
, another lesson learned. 🙃
t
I think in multiline string you still have to use
${'$'}