. 匹配除换行符以外的任意字符\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
导入commons-beanutils-1.8.3.jar及commons-logging-1.1.3.jar使用commons-beanutils-1.8.3.jar包时需要同时使用commons-logging-1.1.3.jar包,因为需要写日志。package
com.wzh.test.be...
分类:
编程语言 时间:
2014-05-20 01:37:25
阅读次数:
384
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
1 name=viewport 1、width :
控制viewport的大小,可以指定一个值,如600,
或者特殊的值,如device-width为设备的宽度(单位为缩放为100%的CSS的像素)2、height :
和width相对应,指定高度3、initial-scale : 初始缩放比例,页...
分类:
Web程序 时间:
2014-05-17 15:15:12
阅读次数:
390
今天登录PL/SQL出现问题:---------------------------sys@RAC1
as SYSDBA---------------------------ORA-12521: TNS:
监听程序当前无法识别连接描述符中请求的实例--------------------------...
分类:
其他好文 时间:
2014-05-17 15:03:24
阅读次数:
443
刚自学完oracle的基础,所以就想找一些SQL问题来练练手,所以就选择了这个50sql语句,因为找到的版本不是oracle的,所以尝试着用oracle来实现.这篇博文主要是想记录在做这50道题的时候的理解,答案跟网上的差不多.现在就把这二天刚做的发上来.4个表的数据student表SQL>
sel...
分类:
数据库 时间:
2014-05-17 14:51:39
阅读次数:
496
QuicklinksIf you know what this isall about and
you just need the update site details:name:GNU ARM Eclipse
Plug-insURL:http://gnuarmeclipse.sourceforg...
分类:
系统相关 时间:
2014-05-17 14:44:41
阅读次数:
499
1 package main //main函数 2 import "fmt"
//相当于#include 3 func main() { 4 ar := [10]int{9, 8, 6, 4, 2, 7, 1, 3, 0, 5} 5
num := len(ar) //...
分类:
其他好文 时间:
2014-05-17 14:25:49
阅读次数:
272