mirror of https://github.com/velour/catbase.git
Merge pull request #107 from mccoyst/pick-a-choose
I had parsing on the brain, I swear
This commit is contained in:
commit
5f0b0fc3c8
|
@ -57,8 +57,8 @@ func (p *PickerPlugin) Message(message msg.Message) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
var pickerListPrologue = regexp.MustParse(`^pick[ \t]+([0-9]*)[ \t]+\{[ \t]+`)
|
var pickerListPrologue = regexp.MustCompile(`^pick[ \t]+([0-9]*)[ \t]+\{[ \t]+`)
|
||||||
var pickerListItem = regexp.MustParse(`^([^,]+),[ \t]+`)
|
var pickerListItem = regexp.MustCompile(`^([^,]+),[ \t]+`)
|
||||||
|
|
||||||
func (p * PickerPlugin) parse(body string) (int, []string, error) {
|
func (p * PickerPlugin) parse(body string) (int, []string, error) {
|
||||||
subs := pickerListPrologue.FindStringSubmatch(body)
|
subs := pickerListPrologue.FindStringSubmatch(body)
|
||||||
|
|
Loading…
Reference in New Issue