aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/StringUtil.kt
blob: f080d5a820b17b8abf99c36b8128359d2553713f (plain)
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(" ")
}