1 2 3 4 5 6 7 8 9 10 11 12 13
package moe.nea.firmament.util object StringUtil { fun String.words(): Sequence<String> { return splitToSequence(" ") // TODO: better boundaries } fun parseIntWithComma(string: String): Int { return string.replace(",", "").toInt() } fun Iterable<String>.unwords() = joinToString(" ") }