1 # -*- coding: utf-8 -*- 2 """ 3 去除字符串两端的空格和字符 4 lstrip()、rstrip()、strip() 5 返回字符串的拷贝 6 """ 7 x = ' aaa ' 8 9 print '|',x.lstrip(),'|',x.rst...
分类:
其他好文 时间:
2014-06-28 20:25:33
阅读次数:
196
aaaconfig Configure RADIUS for AAA servicesad Specifies all administration domain (AD)-level operationsag Configure the Access Gateway featureagshow D...
分类:
其他好文 时间:
2014-06-28 17:23:01
阅读次数:
362
题意:给你n个病毒串,m个网站,问每个网站包含有哪些有病毒的网站,输出病毒编号。
最后输出有多少个有病毒的网站。
Sample Input
3
aaa
bbb
ccc
2
aaabbbccc
bbaacc
Sample Output
web 1: 1 2 3
total: 1
PS:web 2 没有病毒
#include
#in...
分类:
其他好文 时间:
2014-06-24 21:10:15
阅读次数:
278
Asp.net中固定位数用零补齐的函数(已解决,示例)!
在开发当中,出现编号实现8位数,但需要用0补齐。如:123,表示:0000123。
实例如下:
decimal aaa = 123; // 数值型
string bbb = aaa.ToString(); // 转换为字符
bbb = bbb.PadLeft(7, '...
分类:
Web程序 时间:
2014-06-22 22:34:18
阅读次数:
279
非常非常常用的一个函数Split字符串分割函数。Dim myTestmyTest = "aaa/bbb/ccc/ddd/eee/fff/ggg"Dim arrTestarrTest = Split(myTest , "/" , -1 , 1)Dim iFor i = 0 to ubound(arrT...
分类:
其他好文 时间:
2014-06-21 14:30:32
阅读次数:
207
AAAA: (1\d{2})\d{4}([\d])\2{3}AAA: (1\d{2})\d{5}([\d])\2{2}ABCD: (1\d{2})\d{4}(?:0(?=1)|1(?=2)|2(?=3)|3(?=4)|4(?=5)|5(?=6)|6(?=7)|7(?=8)|8(?=9)){3}\dD...
分类:
移动开发 时间:
2014-06-18 21:33:04
阅读次数:
1506
public partial class Index : System.Web.UI.Page{public string token = "AAA";//自己的 tokenprotected void Page_Load(object sender, EventArgs e){#region///...
分类:
微信 时间:
2014-06-18 20:55:16
阅读次数:
495
create procedure pro_aaa( @canshu1nvarchar(200), @canshu2nvarchar(200)) as begin declare @strsql nvarchar(2000) set @strsql='select * from table1 wher...
分类:
其他好文 时间:
2014-06-18 12:59:40
阅读次数:
191
题目描述给定一个字符串s,求出一个子串t,满足如下性质:1.t是s的一个前缀。2.t是s的一个后缀。3.t出现在s的中间(并非前缀和后缀)。例如:字符串s为fixprefixsuffix,t可以是fix。字符串s为aaa,t可以是aa。输入输入包括多组数据,每组数据为一行,每行有一个字符串s,其长度...
分类:
其他好文 时间:
2014-06-15 12:58:05
阅读次数:
187
步骤:1:修改ipfaaaclientconfig.xml.sample为ipfclientconfig.xml,修改为绝对路径,路径用正斜杠‘/’2:替换ipfclientconfig.xml中warn的关键值为debug3:修改AAA.properties.sample为AAA.properti...
分类:
其他好文 时间:
2014-06-13 19:47:42
阅读次数:
370