trimIndent
所在位置是kotlin.text.trimIndent
,其相关用法介绍如下。
用法:
检测所有输入行的公共最小缩进,将其从每一行中删除,如果第一行和最后一行为空白(注意空白与空的区别),则还删除它们。
请注意,空行不会影响检测到的缩进级别。
如果存在没有前导空白字符的非空行(根本没有缩进),则公共缩进为 0,因此此函数不会更改缩进。
不保留原始行尾。
例子:
import java.util.Locale
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val withoutIndent =
"""
ABC
123
456
""".trimIndent()
println(withoutIndent) // ABC\n123\n456
//sampleEnd
}
输出:
ABC 123 456
也可以看看
相关用法
- Kotlin trimMargin用法及代码示例
- Kotlin toTypedArray用法及代码示例
- Kotlin then用法及代码示例
- Kotlin toByteArray用法及代码示例
- Kotlin take用法及代码示例
- Kotlin toBooleanStrict用法及代码示例
- Kotlin takeWhile用法及代码示例
- Kotlin takeLastWhile用法及代码示例
- Kotlin to用法及代码示例
- Kotlin takeLast用法及代码示例
- Kotlin toBooleanStrictOrNull用法及代码示例
- Kotlin thenComparator用法及代码示例
- Kotlin titlecase用法及代码示例
- Kotlin toSortedMap用法及代码示例
- Kotlin thenBy用法及代码示例
- Kotlin toProperties用法及代码示例
- Kotlin toList用法及代码示例
- Kotlin thenByDescending用法及代码示例
- Kotlin thenDescending用法及代码示例
- Kotlin toString用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin reduceRight用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.text.trimIndent。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。