From 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 Mon Sep 17 00:00:00 2001 From: Date: Mon, 29 Jun 2015 20:16:15 +0000 Subject: Update documentation --- regex/fn.is_match.html | 108 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 regex/fn.is_match.html (limited to 'regex/fn.is_match.html') diff --git a/regex/fn.is_match.html b/regex/fn.is_match.html new file mode 100644 index 0000000..4a5ef51 --- /dev/null +++ b/regex/fn.is_match.html @@ -0,0 +1,108 @@ + + + + + + + + + + regex::is_match - Rust + + + + + + + + + + + + + + + +
+

Function regex::is_match + + [] + + [src]

+
pub fn is_match(regex: &str, text: &str) -> Result<bool, Error>

Tests if the given regular expression matches somewhere in the text given.

+ +

If there was a problem compiling the regular expression, an error is +returned.

+ +

To find submatches, split or replace text, you'll need to compile an +expression first.

+
+ + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3