blob: 4737177bd7c701684005e0216ec22ebf6bfee496 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package com.raeids.stratus.chat
data class ChatRegexes(val regexList: List<String>?) {
val compiledRegexList: MutableList<Regex> = arrayListOf()
init {
regexList?.forEach {
compiledRegexList.add(Regex(it))
}
}
}
|