1 2 3 4 5 6 7
package dulkirmod.utils object Utils { fun stripColorCodes(string: String): String { return string.replace("§.".toRegex(), "") } }