vonox7
fun String.countMatches(sub: String): Int { return (this.length - this.replace(sub, "").length) / sub.length; }`