摘要: 引言: 在编写处理字符串的程序或网页时,经常会有查找符合某些复杂规则的字符串 的需要。正则表达式就是用于描述这些规则的语法。例:在判断用户邮件地址格式、手机号码格式或者采集别人网页内容时.php也常常用到正则表达式 php有两个常用的正则表达式函数:preg_match和ereg。我今天刚看了preg_match.它的具体写法是preg_match(mode,string subject,array matches);以下是我写的一个example.<?php$mode="/[^8s]/";//匹配模块$str="sssjj88d";//匹配内容e 阅读全文
posted @ 2011-09-08 22:58 清晨の雨露 阅读(235) 评论(4) 推荐(0) 编辑
摘要: 以前我以为入栈和出栈后的顺序一定变反。那那么如何让顺序保持不变呢?如0,1,2,3进栈,那么如何让出栈后的顺序还是0,1,2,3?#include<stack>#include<iostream>using namespace std;void main(){stack<int> s;s.push(0);cout<<s.top()<<endl;s.pop();s.push(1);cout<<s.top()<<endl;s.pop();s.push(2);cout<<s.top()<<en 阅读全文
posted @ 2011-09-08 17:02 清晨の雨露 阅读(334) 评论(0) 推荐(0) 编辑