open fun Regex.matchingReply(replier: suspend M.(MatchResult) -> Any?): Nothing
消息内容可由正则表达式匹配(Regex.matchEntire), 则执行 replier 并将其返回值回复给发信对象.
replier 的 it 将会是消息内容 string.
it
replier - 若返回 Message 则直接发送; 若返回 Unit 则不回复; 其他情况则 Any.toString 后回复
replier