预览模式: 普通 | 列表
09-04
11

dedecmsV53文章分页标题加上序号

  //循环生成HTML文件
  else
  {
   for($i=1;$i<=$this->TotalPage;$i++)
   {
    if($i>1)
    {
     $truefilename = $this->GetTruePath().$fileFirst."_".$i.".".$this->ShortName;
     //为分页标题加上序号。2009.2.13

查看更多...

Tags: PHP dede CMS

分类:Asp&Php | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 402
09-04
11

ASP程序自增

set rs = server.createobject("adodb.recordset")
'这里ProdId 是数据库里,你要做自增的字段
sql = "select * from bproduc where ProdId is not null"
rs.cursorlocation = 3
rs.open sql,conn,1,1
if rs.bof and rs.eof then'数据库没有数据,则设为1,暂时存到autoid
autoid=1
else
totalid=rs.RecordCount'有数据,根据数据库记录总数增1存到autoid

查看更多...

Tags: 自增

分类:Asp&Php | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 320
09-04
09

用ASP过滤HTML代码

'删除字符串中的HTML代码
function nohtml(str)
dim re
Set re=new RegExp
re.IgnoreCase =true
re.Global=True
re.Pattern="(\<.[^\<]*\>)"
str=re.replace(str," ")
re.Pattern="(\<\/[^\<]*\>)"

查看更多...

Tags: HTML

分类:Asp&Php | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 416
<script>
try{
alert("经 encodeURI()得到的值是:"+encodeURI('wd=经')+"\n而非wd=%BE%AD")
}catch(e){
alert("错了吧!");
}
try{
alert(decodeURI("%BE%AD"))
}catch(e){

查看更多...

Tags: encodeURI url 汉字

分类:Ajax/Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 658
09-04
06

Java判断中文的方法

1、
  int count = 0;
  String regEx = "[\\u4e00-\\u9fa5]";
  // System.out.println(regEx);
  String str = "字符串";
  // System.out.println(str);
  Pattern p = Pattern.compile(regEx);
  Matcher m = p.matcher(str);
  System.out.print("提取出来的中文有:");

查看更多...

Tags: 中文

分类:学习 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 446
09-04
06

过滤{}中带有的英文的

第一种:
String reg = "\\{\\w*\\}(\\w*)";

Pattern ptt = Pattern.compile(reg, Pattern.CASE_INSENSITIVE);

Matcher m_other = ptt.matcher("{hezzla}你好");

System.out.println(m_other.replaceAll("$1"));

查看更多...

Tags: 过滤 英文 大括号

分类:Java&Jsp | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 348