- Return true if string matches one of the regular expressions
| 49 | |
| 50 | //- Return true if string matches one of the regular expressions |
| 51 | inline bool findStrings |
| 52 | ( |
| 53 | const wordReListMatcher& matcher, |
| 54 | const std::string& str |
| 55 | ) |
| 56 | { |
| 57 | return matcher.match(str); |
| 58 | } |
| 59 | |
| 60 | // multi-string matches: |
| 61 |