aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/util/stringutil.kt
blob: 21625d412f494966a37ecce5d9171a15a317a4e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * SPDX-FileCopyrightText: 2024 Linnea Gräf <nea@nea.moe>
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

package moe.nea.firmament.util

fun parseIntWithComma(string: String): Int {
    return string.replace(",", "").toInt()
}