gpt4 book ai didi

string - 如何在 Kotlin 字符串模板中嵌入 for 循环

转载 作者:行者123 更新时间:2023-12-04 22:56:15 24 4
gpt4 key购买 nike

我们可以很容易地嵌套表达式运算符,如 ifwhen在 Kotlin 字符串模板中:

"List ${if (list.isEmpty()) "is empty" else "has ${list.size} items"}."

但是 forwhile不是表达式,不能像这样嵌套在模板中:
"<ol>${for (item in list) "<li>$item"}</ol>"

所以我一直在寻找在大型模板中使用循环的便捷方法。

最佳答案

到目前为止,我发现的最简单的开箱即用方法是用等效的 joinToString 替换循环。调用:

"<ol>${list.joinToString("") { "<li>$it" }}</ol>"

或者
"""
<ol>${list.indices.joinToString("") {
"""
<li id="item${it + 1}">${list[it]}"""
}}
</ol>""".trimIndent()

在偏好方面,也可以使用辅助函数模拟循环:
inline fun <T> forEach(iterable: Iterable<T>, crossinline out: (v: T) -> String) 
= iterable.joinToString("") { out(it) }

fun <T> forEachIndexed1(iterable: Iterable<T>, out: (i: Int, v: T) -> String): String {
val sb = StringBuilder()
iterable.forEachIndexed { i, it ->
sb.append(out(i + 1, it))
}
return sb.toString()
}

并像这样使用它们:
"<ol>${forEach(list) { "<li>$it" }}</ol>"

或者
"""
<ol>${forEachIndexed1(list) { i, item ->
"""
<li id="item$i">$item"""
}}
</ol>""".trimIndent()

关于string - 如何在 Kotlin 字符串模板中嵌入 for 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44554781/

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