C++11标准 STL正则表达式 验证电子邮件地址

转自:http://www.cnblogs.com/yejianfei/archive/2012/10/07/2713715.html

我们最经常遇到的验证,就是电子邮件地址验证。网站上常见。各种网页脚本也都常用“正则表达式”(regular expression)对我们输入的电子邮件地址进行验证,判断是否合法。有的还能分解出用户名和域名。现在用C++语言实现一下电子邮件地址验证程序,用的是C++ 11标准新增加的STL正则表达式。

  源代码如下,该代码已在Visual Studio 2010上验证通过。g++ 4.6不支持C++ 11的STL正则表达式,g++ 4.6上编译可以通过,但运行时错误,抛出regex_error异常。因此,如果要在g++ 4.6上使用正则表达式,请用GNU正则表达式库或者用boost正则表达式库。

 1 /*
 2  * regex.cpp - 用正则表达式验证电子邮件地址
 3  *
 4  *  C++11标准  STL正则表达式
 5  *
 6  *
 7  *              Copyright  叶剑飞 2012
 8  *
 9  * 编译命令:
10  *         cl regex.cpp /EHsc /link /out:regex.exe
11  *
12  */
13
14 #include <iostream>
15 #include <cstdlib>
16 #include <string>
17 #include <regex>  // regular expression 正则表达式
18
19 using namespace std;
20
21 int main ( )
22 {
23     string email_address;
24     string user_name, domain_name;
25
26     regex pattern("([0-9A-Za-z\\-_\\.]+)@([0-9a-z]+\\.[a-z]{2,3}(\\.[a-z]{2})?)");
27     // 正则表达式,匹配规则:
28     // 第1组(即用户名),匹配规则:0至9、A至Z、a至z、下划线、点、连字符之中
29     // 的任意字符,重复一遍或以上
30     // 中间,一个“@”符号
31     // 第二组(即域名),匹配规则:0至9或a至z之中的任意字符重复一遍或以上,
32     // 接着一个点,接着a至z之中的任意字符重复2至3遍(如com或cn等),
33     // 第二组内部的一组,一个点,接着a至z之中的任意字符重复2遍(如cn或fr等)
34     // 内部一整组重复零次或一次
35
36
37     // 输入文件结尾符(Windows用Ctrl+Z,UNIX用Ctrl+D)结束循环
38     while ( cin >> email_address )
39     {
40         if ( regex_match( email_address, pattern ) )
41         {
42             cout << "您输入的电子邮件地址合法" << endl;
43
44             // 截取第一组
45             user_name = regex_replace( email_address, pattern, string("$1") );
46
47             // 截取第二组
48             domain_name = regex_replace( email_address, pattern, string("$2") );
49
50             cout << "用户名:" << user_name << endl;
51             cout << "域名:" << domain_name << endl;
52             cout << endl;
53         }
54         else
55         {
56             cout << "您输入的电子邮件地址不合法" << endl << endl;
57         }
58     }
59     return EXIT_SUCCESS;
60 }

C++11标准 STL正则表达式 验证电子邮件地址

时间: 2024-10-09 16:44:04

C++11标准 STL正则表达式 验证电子邮件地址的相关文章

Android正则表达式验证邮箱地址

1 // 邮箱有效性验证 2 Pattern pattern = Pattern 3 .compile("\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*"); 4 Matcher mc = 5 pattern.matcher(RegistMail.getText().toString().trim()); 其中RegistMail为一个EditText控件,用来处理用户的邮箱输入. Android正则表达式验证邮箱地址,布布扣,bu

C++ 11标准STL中Traits的is_pointer的实现

在看STL的源码,发现is_pointer的模板调用,写了一个测试代码如下: #include <iostream> #include <type_traits> using namespace::std; namespace iotek{ template<typename _Tp, _Tp __v> struct integral_constant { static constexpr _Tp value = __v; typedef _Tp value_type;

正则表达式验证IP地址合法性

首先学习一下正则表达式的语法规则,如下: IP地址通常是类似:10.221.105.225的格式,不能以0开头,每个字段最大不超过255,不小于0 IP匹配规则: String ip = "([1-9]|[1-9][0-9]|1\\d\\d|2[0-4]\\d|25[0-5])\\." + "([1-9]|[1-9][0-9]|1\\d\\d|2[0-4]\\d|25[0-5])\\." + "([1-9]|[1-9][0-9]|1\\d\\d|2[0-4

Js 正则表达式验证IP地址

1.验证方法 function isValidIP(ip) { var reg = /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/ return reg.test(ip); } 2.判断 isValidIP(NewIP) == false

正则表达式验证邮箱地址

邮箱@前缀的几种类型: 1.纯数字       [email protected] 2.纯字母 [email protected]3.字母数字混合  [email protected]4.带点的 [email protected]5.带下划线 [email protected]6.带连接线   [email protected] 邮箱@后缀的类型: 1.[email protected] 2.[email protected] *至少有两处单词 *顶级域名一般为2~4位(如cn.com.club

使用正则表达式验证IP地址

实现效果: 知识运用: 实现代码: public bool validate(string str_IP) { string regex = @"(25[0-5]|2[0-4]\d|[0-1]\d{2}|[0-9]?\d)"; return Regex.IsMatch(textBox1.Text,("^"+regex+"\\."+regex+"\\."+regex+"\\."+regex+"$&q

正则表达式验证ip地址类型格式是否正确

var ipVerification = /^(?:(?:1[0-9][0-9]\.)|(?:2[0-4][0-9]\.)|(?:25[0-5]\.)|(?:[1-9][0-9]\.)|(?:[0-9]\.)){3}(?:(?:1[0-9][0-9])|(?:2[0-4][0-9])|(?:25[0-5])|(?:[1-9][0-9])|(?:[0-9]))$/; if(!ipVerification.test(moduleIP)){ zeroModal.alert('IP地址格式不正确!');

js正则表达式验证【引用网址】

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////**************************以下函数调用方式:     function check()     {         var bb = document.getElementById("txt_id&quo

Python学习手册之正则表达式示例--邮箱地址提取

在上一篇文章中,我们介绍了 Python 的捕获组和特殊匹配字符串,现在我们介绍 Python 的正则表达式使用示例.查看上一篇文章请点击:https://www.cnblogs.com/dustman/p/10040430.html 邮箱地址提取为了演示正则表达式的示例用法,我们创建一个从字符串中提取电子邮箱地址的程序.假设我们有一个包含电子邮箱地址的字符串. string = "Please contact [email protected] for assistance" 我们希