parse Commands With Args
fun List<TextSource>.parseCommandsWithArgs(argsSeparator: Regex = TelegramBotCommandsDefaults.defaultArgsSeparatorRegex): MutableMap<String, Array<String>>(source)
fun TextedWithTextSources.parseCommandsWithArgs(argsSeparator: Regex = TelegramBotCommandsDefaults.defaultArgsSeparatorRegex): Map<String, Array<String>>(source)
fun ContentMessage<TextContent>.parseCommandsWithArgs(argsSeparator: Regex = TelegramBotCommandsDefaults.defaultArgsSeparatorRegex): Map<String, Array<String>>(source)
fun List<TextSource>.parseCommandsWithArgs(argsSeparator: String): MutableMap<String, Array<String>>(source)
fun TextedWithTextSources.parseCommandsWithArgs(argsSeparator: String): Map<String, Array<String>>(source)
fun ContentMessage<TextContent>.parseCommandsWithArgs(argsSeparator: String): Map<String, Array<String>>(source)
Parse commands and their args. Logic will find command, get all subsequent data as args until new command