Crates.io | pcre |
lib.rs | pcre |
version | 0.2.3 |
source | src |
created_at | 2015-05-22 15:23:01.697283 |
updated_at | 2016-07-14 13:32:37.581361 |
description | Rust wrapper for libpcre. |
homepage | https://github.com/cadencemarseille/rust-pcre |
repository | https://github.com/cadencemarseille/rust-pcre |
max_upload_size | |
id | 2169 |
size | 66,226 |
Rust 1.x+ wrapper for libpcre 8.20+.
To use rust-pcre, you can either install libpcre 8.20+ and register with pkg-config or you can let rust-pcre build libpcre from source.
Debian Squeeze's package for libpcre is for version 8.02 of the library, which is too old. You can either install a newer version of libpcre and register it with pkg-config or just let rust-pcre automatically build libpcre from source.
On Debian Wheezy and newer, install the libpcre3-dev
package:
sudo apt-get install libpcre3-dev
Install the pcre-devel
package.
Mac OS 10.7 ships with version 8.02 of libpcre. You can either install a newer version of libpcre and register it with pkg-config or just let rust-pcre automatically build libpcre from source.
Homebrew is highly recommended for installing libpcre. With Homebrew, installing the latest versions of Rust and libpcre is as simple as:
brew install rust pcre
To upgrade:
brew update && brew upgrade rust pcre
The libpcre packages for Ubuntu 10.04 LTS 'Lucid Lynx' and Ubuntu 12.04 LTS 'Precise Pangolin' are too old. You can either install a newer version of libpcre and register it with pkg-config or just let rust-pcre automatically build libpcre from source.
On Ubuntu 12.10 'Quantal Quetzal' and newer, install the libpcre3-dev
package:
sudo apt-get install libpcre3-dev
The basic use of the library involves compiling a pattern regular expression:
let mut re = match Pcre::compile(pattern) {
Err(err) => {
// compilation failed
return;
},
Ok(re) => re
};
You can also pass options:
let mut compile_options: EnumSet<CompileOption> = EnumSet::new();
compile_options.insert(CompileOption::Caseless);
let mut re = Pcre::compile_with_options(pattern, &compile_options).unwrap();
To test against a subject string, use one of the exec(), exec_from(), or exec_from_with_options() methods. For example:
let m = match re.exec(subject) {
None => { println("No match"); return; },
Some(m) => m
};
See the source of pcredemo
for a complete example.