Daniel Felipe Henao Toro
11/30/2022, 7:22 PMprivate fun getClickTagName(textOptions: List<String>, tag: StringBuilder): String {
var textToSearch = ""
run clickTags@{
textOptions.forEach { clickTag ->
if (tag.contains(clickTag, true)) {
textToSearch = clickTag
return@clickTags
}
}
}
return textToSearch
}
Is it kind of notation? does someone know it?ephemient
11/30/2022, 7:24 PMDaniel Felipe Henao Toro
11/30/2022, 7:25 PM