Colorful Life2010

日归档: 2005年07月07日 | 记录数: 3
ColdFusion中常用几种字符串查找函数
Weather:雾 ,东南风 3-4级 ,最高气温25 ℃

字符串操作函數有以下幾種,find,findnocase,findoneof,replace,compare

find:Find(substring, string [, start ]),找出substring在string中的起始位置,返回一個數字,如果沒有找到,就返回0。這個函數是case sensitive的,就是說是區分大小寫的。

findnocase:FindNoCase(substring, string [, start ]),用法同find,只是個函...

Sybase数据库SQL查询
Weather:晴 ,东南风 3-4级 ,最高气温26 ℃
SQL不仅包括查询数据的有关命令,还包括创建数据库及其对象,增、删、改数据等功能。分别定义为数据查询语言,数据定义语言及数据操作语言。这里先介绍数据查询语言。其基本句法为: 
Select select_list from table_list where search_conditions 
1、简单查询 
A、选择若干列 
Select expression [,expression]... From table_list&n...
近来解决的BLOG问题
Weather:晴 ,东南风 3-4级 ,最高气温26 ℃

刚刚解决了右侧最新回复内容的去空行以及去折行问题,所用ASP代码如下

'//去除换行以及段落代码
Function killBrP(fStr)
if IsNull(fStr) then exit function
dim re
set re = new RegExp
 re.IgnoreCase = true
 re.Global = True

 re.Pattern = "\s"
 fStr = re.Replace(fStr,"")
 re.Pattern = "&l...