gpt4 book ai didi

string - 如何在原始(多行)Kotlin 字符串中使用美元符号 '$'?

转载 作者:行者123 更新时间:2023-12-05 03:29:12 29 4
gpt4 key购买 nike

是否有一种简洁的方法来转义原始 Kotlin 字符串中的 $ 字符?

在一个简单的字符串中,我们使用 "\$"
在原始字符串中,有一种明显但非常丰富的方式 """${"$"}""" 当字符串包含大量 $ 时效果不佳,即在 MongoDB 查询或某种第三方库模板中。

最佳答案

对于mongo操作符你可以定义常量来避免这个问题,就这样

object MongoOperators {
const val eq = "\$eq"
const val ne = "\$ne"
const val and = "\$and"
}

val findFilter = """
{
$and: [
"foo": { $eq : 1},
"bar": { $ne : 2}
]
}
""".trimIndent()

关于string - 如何在原始(多行)Kotlin 字符串中使用美元符号 '$'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71047030/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com