1 2 3 4 5 6
package moe.nea.firmament.util fun parseIntWithComma(string: String): Int { return string.replace(",", "").toInt() }