人人做人人澡人人爽欧美,国产主播一区二区,久久久精品五月天,羞羞视频在线观看免费

當前位置:蘿卜系統(tǒng)下載站 > 技術(shù)開發(fā)教程 > 詳細頁面

暑期繽紛巨獻之~------完成支持邏輯搜索/單詞搜索/詞組搜索+支持OR/AND關(guān)鍵字! (2)

暑期繽紛巨獻之~------完成支持邏輯搜索/單詞搜索/詞組搜索+支持OR/AND關(guān)鍵字! (2)

更新時間:2022-07-29 文章作者:未知 信息來源:網(wǎng)絡 閱讀次數(shù):


//ROOT1.嘿嘿!!!//

以下代碼因為是直接在本人主頁上COPY下來的,已經(jīng)和頁面結(jié)合,所以比較難看懂.因為這個文件我是比較久以前寫的..現(xiàn)在搞到自己也看得不大懂了~~呵呵!!!因為最近準備把電腦給暫時戒了,好好學習.所以把本人寫過的一些自己認為過得去的代碼貼出來...呵呵

---------遲點有時間我再把處理SQL 語句得ASP文件COPY上來--------
---------根據(jù)網(wǎng)友輸入的搜索條件動態(tài)生成SQL 語句的VBS文件-----

Sub Show(numbers)
Dim Str
Select Case numbers
Case 1
Str="∷啟動按作者搜索∷"
window.document.all("show").innerHTML=Str
Case 2
Str="∷啟動按單詞搜索∷"
window.document.all("show").innerHTML=Str
Case 3
Str="∷啟動按詞組搜索∷"
window.document.all("show").innerHTML=Str
Case 4
Str="∷啟動按邏輯搜索∷"
window.document.all("show").innerHTML=Str
Case 5
Str="∷按復合邏輯搜索∷"
window.document.all("show").innerHTML=Str
End Select
End Sub
'----------------------------------------------全局變量
Dim a7
a7=" "

'-------------------------------------------------------
Function checkhaha(haha)
text=replace(trim(haha.search.value),"'","''")
If text="" Then
alert("Sorry.請輸入你的搜索關(guān)鍵字")
haha.search.value=""
haha.search.focus()
Exit Function
End if
haha.search.value=text
haha.SearchString.value=GetText(text,haha)
haha.submit()
End Function


Function GetText(text,haha)
Dim reg
Dim res
Dim sky

If haha.radiobutton.checked Then '*************************************如果按作者則提交推出
Call Show(1)
GetText="name='" & text &"'"
Exit Function
End if
'*********************************************************************
Set reg=new regexp
reg.IgnoreCase = true
reg.Global = True
reg.Pattern="\s"
res=reg.test(text)
'*********************************************************如果關(guān)鍵字不包含空格就進行單詞搜索
If Not res Then
Call Show(2)
GetText="(標題+文章) like '%" & text & "%'"
Exit Function
End if
'********************************************************************************************

reg.Pattern="\sand|\sor"
res=reg.test(text)
If res Then '*************************************************檢查邏輯表達式,正確則返回SQL語句,否則返回假,按詞組搜索
sky=check(reg,text)
          If sky=false Then                 '**************************************如果邏輯搜索不正確則進行詞組搜索
          GetText=wahaha(reg,text)
          Else                            '**************************************************提交邏輯搜索
          GetText=sky
          End if
Else  '****************************************************如果沒有AND或者OR關(guān)鍵字就進行詞組搜索
GetText=wahaha(reg,text)
End if
End Function

Function wahaha(reg,text)'*****************************************詞組搜索
Dim ter
Dim ter1
Dim likes
Dim ors
ter=""
ter1=""
likes=" or ((標題+文章) like '%"
ors="%')"
reg.Pattern="(\S*\S)"
Set re=reg.Execute(text)
for each i in re
ter=ter & likes & i & ors
ter1=ter1 & i & a7
next
Call Show(3)
wahaha=mid(ter,4)
End Function


Function check(reg2,text2)
Dim re
Dim i
Dim bbb
Dim tru
Dim re1
Dim re2
Dim re3
Dim str
Dim str1
Dim a1
Dim a2
Dim a3
Dim a4
str="(標題+文章) like '%"
str1="%'"
tru=true
bbb=true
reg2.Pattern="^\(.+\)\s(and|or)\s"
re=reg2.test(text2)
reg2.Pattern="\s(and|or)\s\(.+\)$"
re3=reg2.test(text2)

If re and re3 Then '***********************************如果為全復合邏輯,就返回SQL語句
reg2.Pattern="^\((\S*\S) (\bor\b|\band\b) (\S*\S)\) (and|or) \((\S*\S) (\bor\b|\band\b) (\S*\S)\)$"
Set re1=reg2.Execute(text2)
If re1.count<1 Then
check=false
Exit Function
End if
Set re2=re1(0)
If re2.submatches.count<6 Then
check=false
Exit Function
End if
a1=re2.submatches(0)
a2=re2.submatches(2)
a3=re2.submatches(4)
a4=re2.submatches(6)
check="("&str&a1&str1&" "&re2.submatches(1)&" "&str&a2&str1&") "&_
      re2.submatches(3)&" ("&str&a3&str1&" "&re2.submatches(5)&" "&str&a4&str1&")"
Call Show(5)
Exit Function
End if


If re Then '**********************************************前面有括號后面沒有就返回SQL語句
reg2.Pattern="^\((\S*\S) (\bor\b|\band\b) (\S*\S)\) (and|or) (.+)"
Set re1=reg2.Execute(text2)
If re1.count<1 Then
check=false
Exit Function
End if
Set re2=re1(0)
If re2.submatches.count<4 Then
check=false
Exit Function
End if
a1=re2.submatches(0)
a2=re2.submatches(2)
a3=re2.submatches(4)
check="(" & str & a1 & str1 & " " & re2.submatches(1) & " " & str & a2 & str1 & ") "& re2.submatches(3) & " (" & str & a3 & str1 & ")"
Call Show(5)
Exit Function
End if

If re3 Then '**********************************************前面沒有括號后面有就反會SQL語句
reg2.Pattern="(.+) (and|or) \((\S*\S) (\bor\b|\band\b) (\S*\S)\)$"
Set re1=reg2.Execute(text2)
If re1.count<1 Then
check=false
Exit Function
End if
Set re2=re1(0)
If re2.submatches.count<4 Then
check=false
Exit Function
End if
a1=re2.submatches(0)
a2=re2.submatches(2)
a3=re2.submatches(4)
check="("&str&a1&str1&") "&re2.submatches(1)&" ("&str&a2&str1&" "&re2.submatches(3)&" "&str&a3&str1&")"
Call Show(5)
Exit Function
End if

Dim sss
Dim ccc
Dim aaa
sss="((標題+文章) like '%"
ccc="%')"
aaa=""
n1=0
reg2.pattern="(\S*\S)"
Set re=reg2.execute(text2)
Dim a143
a143=re.count-1
If re.item(a143)="and" or re.item(a143)="or" Then
check=false
Exit Function
End if

for each i in re

If tru Then

If i<>"and" and i<>"or" Then
tru=false
aaa=aaa & sss & i & ccc
else
bbb=false
Exit for
End if

else
If i="and" or i="or" Then
tru=true
aaa=aaa & i
else
bbb=false
Exit for
End if
End if
next
If not bbb Then
check=false
else
check=aaa
Call Show(4)
End if
End Function


溫馨提示:喜歡本站的話,請收藏一下本站!

本類教程下載

系統(tǒng)下載排行

網(wǎng)站地圖xml | 網(wǎng)站地圖html
主站蜘蛛池模板: 富源县| 上高县| 武强县| 井研县| 金溪县| 徐汇区| 全南县| 奉新县| 余干县| 汝阳县| 射阳县| 万荣县| 五家渠市| 洛南县| 东莞市| 温州市| 忻城县| 通榆县| 昌都县| 孟州市| 门头沟区| 洛隆县| 中卫市| 浦江县| 信丰县| 宜丰县| 福清市| 昂仁县| 舞阳县| 德兴市| 安溪县| 临桂县| 鲁甸县| 大方县| 鹤庆县| 台江县| 遂昌县| 察隅县| 临安市| 筠连县| 聊城市|