. 匹配除换行符以外的任意字符\w 匹配字母或数字或下划线或汉字\s 匹配任意的空白符\d
匹配数字\b 匹配单词的开始或结束^ 匹配字符串的开始$ 匹配字符串的结束[\u4e00-\u9fa5]{2,20} 匹配2-20个汉字* 重复零次或更多次+
重复一次或更多次? 重复零次或一次{n} 重复n...
分类:
其他好文 时间:
2014-05-20 02:38:31
阅读次数:
219
一.HTTP请求处理1.获取GET请求数据ASP.NET:Request.QueryString[name]JSP:request.getParameter(String
name);2.解决字符串乱码问题:NameValueCollection coding;coding = HttpUtilit...
分类:
Web程序 时间:
2014-05-20 02:37:14
阅读次数:
317
--显示所有用户表:--1SELECT SCHEMA_NAME(schema_id) As
SchemaName , name As TableName from sys.tables ORDER BY name--2。alternate:SELECT
sch.name As Schem...
分类:
数据库 时间:
2014-05-20 01:49:29
阅读次数:
735
Normally, when the Directory Server conducts a
search, the server looks through the entire entry for a match, throughout the
entire directory. For lar...
分类:
其他好文 时间:
2014-05-20 01:23:35
阅读次数:
277
自己定义一个结构体,使用struct关键字struct student{ char
name[20]; int age; int
num;};定义好结构体,student就相当于变量类型,我们可以直接用来定义一个student类型的变量:student
A;也可以直接在定义结构体的时候直接进行...
分类:
编程语言 时间:
2014-05-20 01:08:22
阅读次数:
266
3.1
ButtonButton这控件不用多说,就是一个按钮,主要是点击后进行相应事件的响应。给组件添加ID属性:定义格式为
android:id="@+id/name",这里的name是自定义的,不是索引变量。“@+”表示新声明,"@"表示引用,例如:"@+id/tv"
表示新声明一个id,是id...
分类:
移动开发 时间:
2014-05-20 00:43:56
阅读次数:
426
/* 题目: //声明一个结构体类型 struct _AdvTeacher { char
*name; char *tile; int age; ...
分类:
其他好文 时间:
2014-05-19 23:56:31
阅读次数:
412
简述drop table
tmp_qry_cus_186mcc_highuser_d;create global temporary table
tmp_qry_cus_186mcc_highuser_d( user_id number(15))on commit preserve rows; 这....
分类:
数据库 时间:
2014-05-19 20:57:00
阅读次数:
399
这是参数类型约束,指定T必须是Class类型。.NET支持的类型参数约束有以下五种:where T :
struct | T必须是一个结构类型where T : class | T必须是一个Class类型where T : new() |
T必须要有一个无参构造函数where T : NameOfB...
分类:
其他好文 时间:
2014-05-19 20:50:40
阅读次数:
268
Model层[Serializable] public partial class tb_admin{
public tb_admin() {}#region Model private string _id; private string _name;
private string _pwd; /...
分类:
其他好文 时间:
2014-05-17 17:48:35
阅读次数:
278