(s string)
| 136 | } |
| 137 | |
| 138 | func (this *Regexp) FindStringSubmatch(s string) []string { |
| 139 | return this.rawRegexp.FindStringSubmatch(s) |
| 140 | } |
| 141 | |
| 142 | // ParseKeywords 提取表达式中的关键词 |
| 143 | func (this *Regexp) ParseKeywords(exp string) (keywords []string) { |
no outgoing calls