blob: 6a01d123c18581de8976484efa289d01a3c7740d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
use regex::Regex;
use std::borrow::ToOwned;
static PATTERN: Regex = regex!(":(.*)!(.*)@(.*)");
#[deriving(Show, Clone)]
pub struct Ident {
pub nickname: String,
pub user: String,
pub host: String
}
impl Ident {
pub fn parse(s: &str) -> Option<Ident> {
let c = match PATTERN.captures(s) {
Some(c) => c,
None => return None
};
Some(Ident {
nickname: c.at(1).unwrap().to_owned(),
user: c.at(2).unwrap().to_owned(),
host: c.at(3).unwrap().to_owned()
})
}
}
|