/// Generates a regexp pattern for the given string. If the pattern is /// invalid, the parse function should return an error. #[allow(clippy::result_unit_err)] fn parse(pattern: &str, flags: &str, force_eval: bool) -> Result<Self, ()>;
/// Matches the given text against the regular expression and returns the list /// of captures. The matches are returned in the order they appear in the /// regular expression. It is **not** prefixed with the full match. For groups /// that occur in the regular expression, but did not match, the corresponding /// capture should be `None`. /// /// Returns `None` if the text does not match the regular expression. fn matches<'a>(&self, text: &'a str) -> Option<Vec<Option<&'a str>>>;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.